centaline-data-driven 1.3.48 → 1.3.49
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/package.json
CHANGED
|
@@ -442,6 +442,9 @@
|
|
|
442
442
|
on: {
|
|
443
443
|
finished(data) {
|
|
444
444
|
self.$common.closeDialog(dialogOption.dialog);
|
|
445
|
+
if(data.rtnMsg){
|
|
446
|
+
self.$message.success(data.rtnMsg);
|
|
447
|
+
}
|
|
445
448
|
if(field && field.changeCallBackFunName){
|
|
446
449
|
self.changeCallBackHandler(field, field.changeCallBackFunName, data.content);
|
|
447
450
|
}
|
|
@@ -914,10 +914,10 @@ export default {
|
|
|
914
914
|
height: '165px'
|
|
915
915
|
},
|
|
916
916
|
on: {
|
|
917
|
-
finished() {
|
|
917
|
+
finished(data) {
|
|
918
918
|
self.$common.closeDialog(dialogOption.dialog);
|
|
919
919
|
if(data.rtnMsg){
|
|
920
|
-
self.$message.
|
|
920
|
+
self.$message.success(data.rtnMsg);
|
|
921
921
|
}
|
|
922
922
|
self.getPage(1);
|
|
923
923
|
},
|