jtui3.0 1.1.42 → 1.1.44
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 +48 -25
- package/lib/jtui3.0.css +1 -1
- package/lib/jtui3.0.umd.js +24 -1
- 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
|
+
params = Object.assign(params, 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 () => {
|
|
@@ -300252,6 +300264,11 @@ function MttPanelHook(props, isListen = true) {
|
|
|
300252
300264
|
//修改操作
|
|
300253
300265
|
modify_handler: async (params, item, level) => {
|
|
300254
300266
|
const path = item.submit + item.path;
|
|
300267
|
+
|
|
300268
|
+
if (queryParmasOut.value) {
|
|
300269
|
+
params = Object.assign(params, queryParmasOut.value);
|
|
300270
|
+
}
|
|
300271
|
+
|
|
300255
300272
|
const {
|
|
300256
300273
|
data
|
|
300257
300274
|
} = await props.axios.post(path, params);
|
|
@@ -300304,6 +300321,8 @@ function MttPanelHook(props, isListen = true) {
|
|
|
300304
300321
|
|
|
300305
300322
|
ElMessage.warning("修改失败[" + msg + "]");
|
|
300306
300323
|
}
|
|
300324
|
+
|
|
300325
|
+
queryParmasOut.value = null;
|
|
300307
300326
|
},
|
|
300308
300327
|
// 下载文件
|
|
300309
300328
|
download_handler: row => {
|
|
@@ -300336,18 +300355,22 @@ function MttPanelHook(props, isListen = true) {
|
|
|
300336
300355
|
}).catch(() => {});
|
|
300337
300356
|
},
|
|
300338
300357
|
exec_handler: async (params, item, level) => {
|
|
300339
|
-
console.log(item);
|
|
300340
300358
|
const path = item.submit + item.path;
|
|
300341
300359
|
ElMessageBox.confirm("请确认开始执行操作?", "提示", {
|
|
300342
300360
|
confirmButtonText: "确定",
|
|
300343
300361
|
cancelButtonText: "取消",
|
|
300344
300362
|
type: "warning"
|
|
300345
300363
|
}).then(async () => {
|
|
300364
|
+
if (queryParmasOut.value) {
|
|
300365
|
+
params = Object.assign(params, queryParmasOut.value);
|
|
300366
|
+
}
|
|
300367
|
+
|
|
300346
300368
|
const {
|
|
300347
300369
|
data
|
|
300348
300370
|
} = await props.axios.post(path, model_all.value);
|
|
300349
300371
|
hideModal();
|
|
300350
300372
|
handlerCallBack(data, level, 'exec', item);
|
|
300373
|
+
queryParmasOut.value = null;
|
|
300351
300374
|
}).catch(() => {});
|
|
300352
300375
|
}
|
|
300353
300376
|
}; //parentId寻找父级
|
|
@@ -302152,8 +302175,32 @@ const mtt_panel_5vue_type_script_setup_true_lang_js_hoisted_8 = /*#__PURE__*/mtt
|
|
|
302152
302175
|
const mtt_panel_5_exports_ = /*#__PURE__*/(0,exportHelper/* default */.Z)(mtt_panel_5vue_type_script_setup_true_lang_js, [['__scopeId',"data-v-091952c2"]])
|
|
302153
302176
|
|
|
302154
302177
|
/* harmony default export */ var mtt_panel_5 = (mtt_panel_5_exports_);
|
|
302178
|
+
;// CONCATENATED MODULE: ./node_modules/element-plus/theme-chalk/el-badge.css
|
|
302179
|
+
// extracted by mini-css-extract-plugin
|
|
302180
|
+
|
|
302181
|
+
;// CONCATENATED MODULE: ./node_modules/element-plus/es/components/badge/style/css.mjs
|
|
302182
|
+
|
|
302183
|
+
|
|
302184
|
+
;// CONCATENATED MODULE: ./node_modules/element-plus/theme-chalk/el-message.css
|
|
302185
|
+
// extracted by mini-css-extract-plugin
|
|
302186
|
+
|
|
302187
|
+
;// CONCATENATED MODULE: ./node_modules/element-plus/es/components/message/style/css.mjs
|
|
302188
|
+
|
|
302189
|
+
|
|
302190
|
+
|
|
302191
|
+
;// CONCATENATED MODULE: ./node_modules/element-plus/theme-chalk/el-message-box.css
|
|
302192
|
+
// extracted by mini-css-extract-plugin
|
|
302193
|
+
|
|
302194
|
+
;// CONCATENATED MODULE: ./node_modules/element-plus/es/components/message-box/style/css.mjs
|
|
302195
|
+
|
|
302196
|
+
|
|
302197
|
+
|
|
302198
|
+
|
|
302199
|
+
|
|
302155
302200
|
;// CONCATENATED MODULE: ./node_modules/unplugin/dist/webpack/loaders/transform.js??ruleSet[1].rules[33].use[0]!./node_modules/unplugin/dist/webpack/loaders/transform.js??ruleSet[1].rules[34].use[0]!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./packages/manage-tree-table/components/mtt-panel-7/mtt-panel-7.vue?vue&type=script&setup=true&lang=js
|
|
302156
302201
|
|
|
302202
|
+
|
|
302203
|
+
|
|
302157
302204
|
/* unplugin-vue-components disabled */
|
|
302158
302205
|
|
|
302159
302206
|
|
|
@@ -302749,32 +302796,8 @@ const mtt_panel_7vue_type_script_setup_true_lang_js_hoisted_5 = {
|
|
|
302749
302796
|
const mtt_panel_7_exports_ = /*#__PURE__*/(0,exportHelper/* default */.Z)(mtt_panel_7vue_type_script_setup_true_lang_js, [['__scopeId',"data-v-665995fa"]])
|
|
302750
302797
|
|
|
302751
302798
|
/* harmony default export */ var mtt_panel_7 = (mtt_panel_7_exports_);
|
|
302752
|
-
;// CONCATENATED MODULE: ./node_modules/element-plus/theme-chalk/el-badge.css
|
|
302753
|
-
// extracted by mini-css-extract-plugin
|
|
302754
|
-
|
|
302755
|
-
;// CONCATENATED MODULE: ./node_modules/element-plus/es/components/badge/style/css.mjs
|
|
302756
|
-
|
|
302757
|
-
|
|
302758
|
-
;// CONCATENATED MODULE: ./node_modules/element-plus/theme-chalk/el-message.css
|
|
302759
|
-
// extracted by mini-css-extract-plugin
|
|
302760
|
-
|
|
302761
|
-
;// CONCATENATED MODULE: ./node_modules/element-plus/es/components/message/style/css.mjs
|
|
302762
|
-
|
|
302763
|
-
|
|
302764
|
-
|
|
302765
|
-
;// CONCATENATED MODULE: ./node_modules/element-plus/theme-chalk/el-message-box.css
|
|
302766
|
-
// extracted by mini-css-extract-plugin
|
|
302767
|
-
|
|
302768
|
-
;// CONCATENATED MODULE: ./node_modules/element-plus/es/components/message-box/style/css.mjs
|
|
302769
|
-
|
|
302770
|
-
|
|
302771
|
-
|
|
302772
|
-
|
|
302773
|
-
|
|
302774
302799
|
;// CONCATENATED MODULE: ./node_modules/unplugin/dist/webpack/loaders/transform.js??ruleSet[1].rules[33].use[0]!./node_modules/unplugin/dist/webpack/loaders/transform.js??ruleSet[1].rules[34].use[0]!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./packages/manage-tree-table/components/mtt-panel-8/mtt-panel-8.vue?vue&type=script&setup=true&lang=js
|
|
302775
302800
|
|
|
302776
|
-
|
|
302777
|
-
|
|
302778
302801
|
/* unplugin-vue-components disabled */
|
|
302779
302802
|
|
|
302780
302803
|
|