ps-toolkit-ui 1.5.23 → 1.5.24
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 +3 -1
- 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/components/table/row/table.row.component.js +4 -2
- package/fesm2015/ps-toolkit-ui.js +3 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -2735,7 +2735,6 @@
|
|
|
2735
2735
|
if (opt.modal.form) {
|
|
2736
2736
|
opt.modal.form.name = option.Name;
|
|
2737
2737
|
opt.modal.form.url = option.Url.replace('{}', _this.row.Data.Id) + '-update';
|
|
2738
|
-
console.log(opt.modal.form.url);
|
|
2739
2738
|
opt.modal.form.loadData(option.Url.replace('{}', _this.row.Data.Id) + '-get');
|
|
2740
2739
|
opt.modal.form.onSuccessBase = function () {
|
|
2741
2740
|
opt.modal.hide();
|
|
@@ -2934,6 +2933,9 @@
|
|
|
2934
2933
|
if (_this.table.modal) {
|
|
2935
2934
|
_this.table.modal.show(true);
|
|
2936
2935
|
}
|
|
2936
|
+
if (_this.table.form.onLoad) {
|
|
2937
|
+
_this.table.form.onLoad(result);
|
|
2938
|
+
}
|
|
2937
2939
|
});
|
|
2938
2940
|
}
|
|
2939
2941
|
};
|