jtui3.0 1.1.43 → 1.1.45
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/lib/jtui3.0.common.js +13 -1
- package/lib/jtui3.0.css +1 -1
- package/lib/jtui3.0.umd.js +37 -25
- package/lib/jtui3.0.umd.min.js +1 -1
- package/package.json +1 -1
package/lib/jtui3.0.common.js
CHANGED
|
@@ -299277,6 +299277,11 @@ const jt_page_manager_tree_tablevue_type_script_setup_true_lang_js_default_ = {
|
|
|
299277
299277
|
},
|
|
299278
299278
|
modify_handler: async params => {
|
|
299279
299279
|
const path = forms_item.submit + forms_item.path;
|
|
299280
|
+
|
|
299281
|
+
if (queryParmasOut.value) {
|
|
299282
|
+
params = Object.assign(params, queryParmasOut.value);
|
|
299283
|
+
}
|
|
299284
|
+
|
|
299280
299285
|
const {
|
|
299281
299286
|
data
|
|
299282
299287
|
} = await props.axios.post(path, params);
|
|
@@ -299334,6 +299339,8 @@ const jt_page_manager_tree_tablevue_type_script_setup_true_lang_js_default_ = {
|
|
|
299334
299339
|
|
|
299335
299340
|
ElMessage.warning("修改失败[" + msg + "]");
|
|
299336
299341
|
}
|
|
299342
|
+
|
|
299343
|
+
queryParmasOut.value = null;
|
|
299337
299344
|
},
|
|
299338
299345
|
//执行一个操作
|
|
299339
299346
|
exec_handler: async (url, treeCheckedData, cusItem) => {
|
|
@@ -299343,6 +299350,10 @@ const jt_page_manager_tree_tablevue_type_script_setup_true_lang_js_default_ = {
|
|
|
299343
299350
|
cancelButtonText: "取消",
|
|
299344
299351
|
type: "warning"
|
|
299345
299352
|
}).then(async () => {
|
|
299353
|
+
if (queryParmasOut.value) {
|
|
299354
|
+
model_all = Object.assign(model_all, queryParmasOut.value);
|
|
299355
|
+
}
|
|
299356
|
+
|
|
299346
299357
|
const {
|
|
299347
299358
|
data
|
|
299348
299359
|
} = await props.axios.post(path, model_all);
|
|
@@ -299350,6 +299361,7 @@ const jt_page_manager_tree_tablevue_type_script_setup_true_lang_js_default_ = {
|
|
|
299350
299361
|
handlerCallBack(data, 'exec', {
|
|
299351
299362
|
cusItem
|
|
299352
299363
|
});
|
|
299364
|
+
queryParmasOut.value = null;
|
|
299353
299365
|
}).catch(() => {});
|
|
299354
299366
|
},
|
|
299355
299367
|
del_handler: async () => {
|
|
@@ -300350,7 +300362,7 @@ function MttPanelHook(props, isListen = true) {
|
|
|
300350
300362
|
type: "warning"
|
|
300351
300363
|
}).then(async () => {
|
|
300352
300364
|
if (queryParmasOut.value) {
|
|
300353
|
-
|
|
300365
|
+
model_all.value = Object.assign(model_all.value, queryParmasOut.value);
|
|
300354
300366
|
}
|
|
300355
300367
|
|
|
300356
300368
|
const {
|