ps-toolkit-ui 0.0.88 → 0.0.89
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/ps-toolkit-ui.umd.js +4 -0
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/classes/table.class.js +5 -1
- package/fesm2015/ps-toolkit-ui.js +4 -0
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -7206,6 +7206,8 @@
|
|
|
7206
7206
|
p.Action = option.Action;
|
|
7207
7207
|
p.Accesses = option.Accesses;
|
|
7208
7208
|
opt.modal.table.permissions = p;
|
|
7209
|
+
console.log(p, 'p');
|
|
7210
|
+
console.log(p.getUrl(), p.getUrl());
|
|
7209
7211
|
if (opt.modal.table.form) {
|
|
7210
7212
|
opt.modal.table.form.url = p.getUrl() + 'Insert';
|
|
7211
7213
|
opt.modal.table.form.baseUrl = p.getUrl() + 'Insert';
|
|
@@ -7213,6 +7215,8 @@
|
|
|
7213
7215
|
opt.modal.table.set();
|
|
7214
7216
|
}
|
|
7215
7217
|
if (opt.modal.form) {
|
|
7218
|
+
console.log(opt.modal.form, 'opt.modal.form');
|
|
7219
|
+
console.log(opt.modal.form.baseUrl, 'opt.modal.form.baseUrl');
|
|
7216
7220
|
opt.modal.form.name = option.Name;
|
|
7217
7221
|
opt.modal.form.url = opt.modal.form.baseUrl + 'Update/' + btn.row.Id;
|
|
7218
7222
|
opt.modal.form.loadData(opt.modal.form.baseUrl + 'Get/' + btn.row.Id);
|