three-trees-ui 1.0.81 → 1.0.82
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/three-trees-ui.common.js +70 -46
- package/lib/three-trees-ui.css +1 -1
- package/lib/three-trees-ui.umd.js +70 -46
- package/lib/three-trees-ui.umd.min.js +1 -1
- package/package.json +1 -1
- package/packages/OnlineForm/src/Form.vue +1 -1
- package/src/mixins/permission.js +1 -1
- package/src/utils.js +4 -1
|
@@ -816,7 +816,7 @@ var utils = {
|
|
|
816
816
|
if (!instance) {
|
|
817
817
|
throw 'VueComponent实例为空.';
|
|
818
818
|
}
|
|
819
|
-
if (instance.$options.componentName
|
|
819
|
+
if (instance.$options.componentName && instance.$options.componentName.includes('runtimeTemplate_')) {
|
|
820
820
|
return instance;
|
|
821
821
|
} else if (instance.$parent) {
|
|
822
822
|
return utils.getRuntimeTemplateOnlineForm(instance.$parent);
|
|
@@ -1525,6 +1525,7 @@ Date.prototype.format = function (format) {
|
|
|
1525
1525
|
//quarter
|
|
1526
1526
|
S: this.getMilliseconds() //millisecond
|
|
1527
1527
|
};
|
|
1528
|
+
|
|
1528
1529
|
if (/(y+)/.test(format)) {
|
|
1529
1530
|
format = format.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length));
|
|
1530
1531
|
}
|
|
@@ -8367,6 +8368,7 @@ var external_moment_default = /*#__PURE__*/__webpack_require__.n(external_moment
|
|
|
8367
8368
|
rows: [] // 表格数据
|
|
8368
8369
|
};
|
|
8369
8370
|
},
|
|
8371
|
+
|
|
8370
8372
|
created() {
|
|
8371
8373
|
this.initParams();
|
|
8372
8374
|
this.loadData();
|
|
@@ -9441,6 +9443,7 @@ const {
|
|
|
9441
9443
|
cacheDicData: {} // 缓存字典数据
|
|
9442
9444
|
};
|
|
9443
9445
|
},
|
|
9446
|
+
|
|
9444
9447
|
computed: {
|
|
9445
9448
|
columns: function () {
|
|
9446
9449
|
return eval(Object(_util_base64_js__WEBPACK_IMPORTED_MODULE_2__[/* decode */ "a"])(this.dataColumns));
|
|
@@ -12741,12 +12744,12 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
12741
12744
|
// ESM COMPAT FLAG
|
|
12742
12745
|
__webpack_require__.r(__webpack_exports__);
|
|
12743
12746
|
|
|
12744
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"48ca8c88-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/OnlineForm/src/Form.vue?vue&type=template&id=
|
|
12747
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"48ca8c88-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/OnlineForm/src/Form.vue?vue&type=template&id=d5f9d1ba&scoped=true
|
|
12745
12748
|
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{"name":"online-form"}},[(_vm.loadStatus == 0)?_c('el-skeleton',{attrs:{"rows":6,"animated":""}}):(_vm.loadStatus > 0)?_c(_vm.currentComponent,{tag:"component",staticClass:"online-form-wrap form-table__wrap",attrs:{"name":_vm.formName,"data":_vm.data,"permission":_vm.permission,"is-view":_vm.isView,"is-print":_vm.isPrint,"mobile-mode":_vm.mobileMode,"form-key":_vm.formKey,"init-fill-data":_vm.initFillData,"extend-prop":_vm.extendProp,"is-support-mobile":_vm.isSupportMobile,"inst-id":_vm.instId,"is-preview":_vm.isPreview},on:{"load-fail":_vm.handleLoadFail,"load-success":_vm.handleLoadSuccess}}):_c('div',{staticClass:"loaded-fail__div"},[_vm._v("\n 表单加载失败,可能是表单配置发生了变化,请联系管理员...\n ")])],1)}
|
|
12746
12749
|
var staticRenderFns = []
|
|
12747
12750
|
|
|
12748
12751
|
|
|
12749
|
-
// CONCATENATED MODULE: ./packages/OnlineForm/src/Form.vue?vue&type=template&id=
|
|
12752
|
+
// CONCATENATED MODULE: ./packages/OnlineForm/src/Form.vue?vue&type=template&id=d5f9d1ba&scoped=true
|
|
12750
12753
|
|
|
12751
12754
|
// EXTERNAL MODULE: ./src/utils.js
|
|
12752
12755
|
var utils = __webpack_require__("025e");
|
|
@@ -12904,7 +12907,7 @@ var external_vue_default = /*#__PURE__*/__webpack_require__.n(external_vue_);
|
|
|
12904
12907
|
});
|
|
12905
12908
|
},
|
|
12906
12909
|
init() {
|
|
12907
|
-
this.currentComponent = this.scopeName;
|
|
12910
|
+
this.currentComponent = 'runtimeTemplate_' + this.scopeName;
|
|
12908
12911
|
this.loadStatus = 1;
|
|
12909
12912
|
external_vue_default.a.component(this.currentComponent, {
|
|
12910
12913
|
componentName: this.currentComponent,
|
|
@@ -12953,11 +12956,11 @@ var external_vue_default = /*#__PURE__*/__webpack_require__.n(external_vue_);
|
|
|
12953
12956
|
});
|
|
12954
12957
|
// CONCATENATED MODULE: ./packages/OnlineForm/src/Form.vue?vue&type=script&lang=js
|
|
12955
12958
|
/* harmony default export */ var src_Formvue_type_script_lang_js = (Formvue_type_script_lang_js);
|
|
12956
|
-
// EXTERNAL MODULE: ./packages/OnlineForm/src/Form.vue?vue&type=style&index=0&id=
|
|
12957
|
-
var
|
|
12959
|
+
// EXTERNAL MODULE: ./packages/OnlineForm/src/Form.vue?vue&type=style&index=0&id=d5f9d1ba&prod&lang=scss
|
|
12960
|
+
var Formvue_type_style_index_0_id_d5f9d1ba_prod_lang_scss = __webpack_require__("905c");
|
|
12958
12961
|
|
|
12959
|
-
// EXTERNAL MODULE: ./packages/OnlineForm/src/Form.vue?vue&type=style&index=1&id=
|
|
12960
|
-
var
|
|
12962
|
+
// EXTERNAL MODULE: ./packages/OnlineForm/src/Form.vue?vue&type=style&index=1&id=d5f9d1ba&prod&lang=scss&scoped=true
|
|
12963
|
+
var Formvue_type_style_index_1_id_d5f9d1ba_prod_lang_scss_scoped_true = __webpack_require__("65c8");
|
|
12961
12964
|
|
|
12962
12965
|
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
12963
12966
|
var componentNormalizer = __webpack_require__("2877");
|
|
@@ -12978,7 +12981,7 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
12978
12981
|
staticRenderFns,
|
|
12979
12982
|
false,
|
|
12980
12983
|
null,
|
|
12981
|
-
"
|
|
12984
|
+
"d5f9d1ba",
|
|
12982
12985
|
null
|
|
12983
12986
|
|
|
12984
12987
|
)
|
|
@@ -13249,6 +13252,7 @@ var formDataUpdate = __webpack_require__("2cfe");
|
|
|
13249
13252
|
if (result != '') {
|
|
13250
13253
|
this.relatedQueryLoad(); // 触发绑定的关联查询
|
|
13251
13254
|
}
|
|
13255
|
+
|
|
13252
13256
|
this.$emit('input', result);
|
|
13253
13257
|
}
|
|
13254
13258
|
}
|
|
@@ -19283,6 +19287,7 @@ const CustomQuery = {
|
|
|
19283
19287
|
// )
|
|
19284
19288
|
// })
|
|
19285
19289
|
},
|
|
19290
|
+
|
|
19286
19291
|
_throwException: msg => {
|
|
19287
19292
|
element_ui__WEBPACK_IMPORTED_MODULE_2__["Message"].error(msg);
|
|
19288
19293
|
throw msg;
|
|
@@ -22261,13 +22266,6 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
22261
22266
|
|
|
22262
22267
|
/***/ }),
|
|
22263
22268
|
|
|
22264
|
-
/***/ "6164":
|
|
22265
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
22266
|
-
|
|
22267
|
-
// extracted by mini-css-extract-plugin
|
|
22268
|
-
|
|
22269
|
-
/***/ }),
|
|
22270
|
-
|
|
22271
22269
|
/***/ "618e":
|
|
22272
22270
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
22273
22271
|
|
|
@@ -23560,22 +23558,22 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
23560
23558
|
|
|
23561
23559
|
/***/ }),
|
|
23562
23560
|
|
|
23563
|
-
/***/ "
|
|
23564
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
23565
|
-
|
|
23566
|
-
// extracted by mini-css-extract-plugin
|
|
23567
|
-
|
|
23568
|
-
/***/ }),
|
|
23569
|
-
|
|
23570
|
-
/***/ "65f5":
|
|
23561
|
+
/***/ "65c8":
|
|
23571
23562
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
23572
23563
|
|
|
23573
23564
|
"use strict";
|
|
23574
|
-
/* harmony import */ var
|
|
23575
|
-
/* harmony import */ var
|
|
23565
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Form_vue_vue_type_style_index_1_id_d5f9d1ba_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("b86c");
|
|
23566
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Form_vue_vue_type_style_index_1_id_d5f9d1ba_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Form_vue_vue_type_style_index_1_id_d5f9d1ba_prod_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__);
|
|
23576
23567
|
/* unused harmony reexport * */
|
|
23577
23568
|
|
|
23578
23569
|
|
|
23570
|
+
/***/ }),
|
|
23571
|
+
|
|
23572
|
+
/***/ "65ea":
|
|
23573
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
23574
|
+
|
|
23575
|
+
// extracted by mini-css-extract-plugin
|
|
23576
|
+
|
|
23579
23577
|
/***/ }),
|
|
23580
23578
|
|
|
23581
23579
|
/***/ "6654":
|
|
@@ -25352,17 +25350,6 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
25352
25350
|
|
|
25353
25351
|
/* harmony default export */ var main = __webpack_exports__["default"] = (component.exports);
|
|
25354
25352
|
|
|
25355
|
-
/***/ }),
|
|
25356
|
-
|
|
25357
|
-
/***/ "706f":
|
|
25358
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
25359
|
-
|
|
25360
|
-
"use strict";
|
|
25361
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Form_vue_vue_type_style_index_0_id_ad6e0962_prod_lang_scss__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("c098");
|
|
25362
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Form_vue_vue_type_style_index_0_id_ad6e0962_prod_lang_scss__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Form_vue_vue_type_style_index_0_id_ad6e0962_prod_lang_scss__WEBPACK_IMPORTED_MODULE_0__);
|
|
25363
|
-
/* unused harmony reexport * */
|
|
25364
|
-
|
|
25365
|
-
|
|
25366
25353
|
/***/ }),
|
|
25367
25354
|
|
|
25368
25355
|
/***/ "707c":
|
|
@@ -29439,6 +29426,7 @@ var external_lodash_default = /*#__PURE__*/__webpack_require__.n(external_lodash
|
|
|
29439
29426
|
fixedParams: {} // 传过来的固定值
|
|
29440
29427
|
};
|
|
29441
29428
|
},
|
|
29429
|
+
|
|
29442
29430
|
watch: {
|
|
29443
29431
|
props1: function () {
|
|
29444
29432
|
//树形
|
|
@@ -33251,6 +33239,17 @@ _main_vue__WEBPACK_IMPORTED_MODULE_0__["default"].register({
|
|
|
33251
33239
|
|
|
33252
33240
|
// extracted by mini-css-extract-plugin
|
|
33253
33241
|
|
|
33242
|
+
/***/ }),
|
|
33243
|
+
|
|
33244
|
+
/***/ "905c":
|
|
33245
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
33246
|
+
|
|
33247
|
+
"use strict";
|
|
33248
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Form_vue_vue_type_style_index_0_id_d5f9d1ba_prod_lang_scss__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("b494");
|
|
33249
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Form_vue_vue_type_style_index_0_id_d5f9d1ba_prod_lang_scss__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Form_vue_vue_type_style_index_0_id_d5f9d1ba_prod_lang_scss__WEBPACK_IMPORTED_MODULE_0__);
|
|
33250
|
+
/* unused harmony reexport * */
|
|
33251
|
+
|
|
33252
|
+
|
|
33254
33253
|
/***/ }),
|
|
33255
33254
|
|
|
33256
33255
|
/***/ "9084":
|
|
@@ -33278,7 +33277,7 @@ _main_vue__WEBPACK_IMPORTED_MODULE_0__["default"].register({
|
|
|
33278
33277
|
/***/ "9224":
|
|
33279
33278
|
/***/ (function(module) {
|
|
33280
33279
|
|
|
33281
|
-
module.exports = JSON.parse("{\"a\":\"1.0.
|
|
33280
|
+
module.exports = JSON.parse("{\"a\":\"1.0.82\"}");
|
|
33282
33281
|
|
|
33283
33282
|
/***/ }),
|
|
33284
33283
|
|
|
@@ -35563,6 +35562,7 @@ function watermark(teleport, options = {}) {
|
|
|
35563
35562
|
//水印长度
|
|
35564
35563
|
watermark_angle: 20 //水印倾斜度数
|
|
35565
35564
|
};
|
|
35565
|
+
|
|
35566
35566
|
const settings = Object.assign(defaultOptions, options);
|
|
35567
35567
|
const container = document.querySelector(teleport);
|
|
35568
35568
|
const containerWidth = container.clientWidth;
|
|
@@ -38330,6 +38330,7 @@ const {
|
|
|
38330
38330
|
}
|
|
38331
38331
|
//conditionStr = conditionStr+cellValue+condition[m].op+condition[m].val;
|
|
38332
38332
|
}
|
|
38333
|
+
|
|
38333
38334
|
if (i > 0) {
|
|
38334
38335
|
alarmScript += ' else ';
|
|
38335
38336
|
}
|
|
@@ -38776,6 +38777,7 @@ var staticRenderFns = []
|
|
|
38776
38777
|
this.loadData();
|
|
38777
38778
|
//this.dialogVisible = true
|
|
38778
38779
|
},
|
|
38780
|
+
|
|
38779
38781
|
handleTabClick(tab) {
|
|
38780
38782
|
this.currentIndex = Number(tab.index);
|
|
38781
38783
|
this.pageBean = {
|
|
@@ -39395,6 +39397,13 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
39395
39397
|
|
|
39396
39398
|
/***/ }),
|
|
39397
39399
|
|
|
39400
|
+
/***/ "b494":
|
|
39401
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
39402
|
+
|
|
39403
|
+
// extracted by mini-css-extract-plugin
|
|
39404
|
+
|
|
39405
|
+
/***/ }),
|
|
39406
|
+
|
|
39398
39407
|
/***/ "b4eb":
|
|
39399
39408
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
39400
39409
|
|
|
@@ -39791,6 +39800,13 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
39791
39800
|
|
|
39792
39801
|
/***/ }),
|
|
39793
39802
|
|
|
39803
|
+
/***/ "b86c":
|
|
39804
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
39805
|
+
|
|
39806
|
+
// extracted by mini-css-extract-plugin
|
|
39807
|
+
|
|
39808
|
+
/***/ }),
|
|
39809
|
+
|
|
39794
39810
|
/***/ "b895":
|
|
39795
39811
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
39796
39812
|
|
|
@@ -40912,13 +40928,6 @@ _main_vue__WEBPACK_IMPORTED_MODULE_0__["default"].register({
|
|
|
40912
40928
|
|
|
40913
40929
|
/***/ }),
|
|
40914
40930
|
|
|
40915
|
-
/***/ "c098":
|
|
40916
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
40917
|
-
|
|
40918
|
-
// extracted by mini-css-extract-plugin
|
|
40919
|
-
|
|
40920
|
-
/***/ }),
|
|
40921
|
-
|
|
40922
40931
|
/***/ "c0f0":
|
|
40923
40932
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
40924
40933
|
|
|
@@ -42233,6 +42242,7 @@ module.exports = require("echarts/lib/echarts.js");
|
|
|
42233
42242
|
if (subData[key].length > 0) {
|
|
42234
42243
|
subData[key] = []; //有则清空
|
|
42235
42244
|
}
|
|
42245
|
+
|
|
42236
42246
|
const sunTabName = key.replace('sub_', '');
|
|
42237
42247
|
if (this.permission.table[sunTabName] && (this.permission.table[sunTabName].required == true || this.permission.table[sunTabName].required == 'true')) {
|
|
42238
42248
|
this.$nextTick(() => {
|
|
@@ -42309,6 +42319,7 @@ module.exports = require("echarts/lib/echarts.js");
|
|
|
42309
42319
|
this.$forceUpdate(); //迫使 Vue 实例重新渲染
|
|
42310
42320
|
}
|
|
42311
42321
|
},
|
|
42322
|
+
|
|
42312
42323
|
addSubTableByName(subTableName) {
|
|
42313
42324
|
for (let boAlias in this.data) {
|
|
42314
42325
|
let subInitData = JSON.parse(JSON.stringify(this.data[boAlias].initData[subTableName] || {}));
|
|
@@ -43057,6 +43068,7 @@ _main_vue__WEBPACK_IMPORTED_MODULE_0__["default"].register({
|
|
|
43057
43068
|
},
|
|
43058
43069
|
iframeSrcJs: String // 动态url base64格式
|
|
43059
43070
|
},
|
|
43071
|
+
|
|
43060
43072
|
data() {
|
|
43061
43073
|
return {
|
|
43062
43074
|
subPageData: {},
|
|
@@ -45229,7 +45241,7 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
45229
45241
|
this.$validator = this.$root.$validator;
|
|
45230
45242
|
let parent = this.$parent || this.$root;
|
|
45231
45243
|
let name = parent.$options.componentName;
|
|
45232
|
-
while (parent && (!name || name
|
|
45244
|
+
while (parent && (!name || !name.includes('runtimeTemplate_'))) {
|
|
45233
45245
|
parent = parent.$parent;
|
|
45234
45246
|
if (parent) {
|
|
45235
45247
|
name = parent.$options.componentName;
|
|
@@ -49293,6 +49305,7 @@ var CustomQuery = __webpack_require__("5558");
|
|
|
49293
49305
|
// }
|
|
49294
49306
|
// }, 300)
|
|
49295
49307
|
},
|
|
49308
|
+
|
|
49296
49309
|
checkNode(data, this_, pnode) {
|
|
49297
49310
|
if (!data.Pid) {
|
|
49298
49311
|
//不清楚是不是有地方数据返回是Pid,这里做个判断
|
|
@@ -49493,6 +49506,7 @@ var CustomQuery = __webpack_require__("5558");
|
|
|
49493
49506
|
// this.checkBoxDataAll.splice(item, 1)
|
|
49494
49507
|
}
|
|
49495
49508
|
}
|
|
49509
|
+
|
|
49496
49510
|
this.syncInputValue();
|
|
49497
49511
|
},
|
|
49498
49512
|
//判断数据是否包含某个对象,并返回数据包含对象的下标
|
|
@@ -49922,6 +49936,7 @@ var utils = __webpack_require__("025e");
|
|
|
49922
49936
|
city: '全国',
|
|
49923
49937
|
citylimit: false //是否限制城市内搜索
|
|
49924
49938
|
},
|
|
49939
|
+
|
|
49925
49940
|
plugin: [],
|
|
49926
49941
|
mapDiaVisible: false,
|
|
49927
49942
|
preAddress: '',
|
|
@@ -52190,6 +52205,7 @@ const req = function (url, data = {}, option = {}) {
|
|
|
52190
52205
|
// this.$refs.multipleTemplateTable.handleFilterChange(this.filterMap)
|
|
52191
52206
|
// }, 100)
|
|
52192
52207
|
},
|
|
52208
|
+
|
|
52193
52209
|
methods: {
|
|
52194
52210
|
//因为row.id_ 或row.id可能会有重复,所以加随机值使其唯一
|
|
52195
52211
|
getRowKey(row) {
|
|
@@ -54203,6 +54219,7 @@ const req = function (url, data = {}, option = {}) {
|
|
|
54203
54219
|
window.open(this.$router.resolve(url).href, '_blank');
|
|
54204
54220
|
//this.$router.push(url)
|
|
54205
54221
|
},
|
|
54222
|
+
|
|
54206
54223
|
//确定导出
|
|
54207
54224
|
submitExport() {
|
|
54208
54225
|
if (!this.exportData || this.exportData.expField.length < 1) {
|
|
@@ -54406,6 +54423,7 @@ const req = function (url, data = {}, option = {}) {
|
|
|
54406
54423
|
this.getSubData(this, refId);
|
|
54407
54424
|
/* }*/
|
|
54408
54425
|
},
|
|
54426
|
+
|
|
54409
54427
|
async getSubData(_me, refId) {
|
|
54410
54428
|
//let ents = this.ents;
|
|
54411
54429
|
let ents = JSON.parse(_me.templateInfo.subField);
|
|
@@ -54641,6 +54659,7 @@ const req = function (url, data = {}, option = {}) {
|
|
|
54641
54659
|
// }
|
|
54642
54660
|
});
|
|
54643
54661
|
}
|
|
54662
|
+
|
|
54644
54663
|
this.handleSubCurrentChange(1, tab);
|
|
54645
54664
|
},
|
|
54646
54665
|
importSub(param) {
|
|
@@ -54714,6 +54733,7 @@ const req = function (url, data = {}, option = {}) {
|
|
|
54714
54733
|
// });
|
|
54715
54734
|
// window.open(href, "_blank");
|
|
54716
54735
|
},
|
|
54736
|
+
|
|
54717
54737
|
initSwitchStatus() {
|
|
54718
54738
|
//初始化开关状态
|
|
54719
54739
|
let manages = utils["a" /* default */].parseToJson(this.templateInfo.manageField);
|
|
@@ -54795,6 +54815,7 @@ const req = function (url, data = {}, option = {}) {
|
|
|
54795
54815
|
// })
|
|
54796
54816
|
});
|
|
54797
54817
|
},
|
|
54818
|
+
|
|
54798
54819
|
display(mpDisplay) {
|
|
54799
54820
|
if (this.isMobile) {
|
|
54800
54821
|
return mpDisplay === '1';
|
|
@@ -56057,6 +56078,7 @@ var external_lodash_default = /*#__PURE__*/__webpack_require__.n(external_lodash
|
|
|
56057
56078
|
}
|
|
56058
56079
|
});
|
|
56059
56080
|
}
|
|
56081
|
+
|
|
56060
56082
|
CustomQuery["a" /* default */].load(alias, queryParams).then(data => {
|
|
56061
56083
|
if (data && data.constructor == Array && resultBind && resultBind.constructor == Object) {
|
|
56062
56084
|
// 关联查询值回绑时,默认获取返回的第一条记录
|
|
@@ -57474,11 +57496,13 @@ const getPopconfirm = function (el, binding) {
|
|
|
57474
57496
|
if (width !== style.width || height !== style.height) {
|
|
57475
57497
|
binding.value(); // 执行传入的方法
|
|
57476
57498
|
}
|
|
57499
|
+
|
|
57477
57500
|
width = style.width;
|
|
57478
57501
|
height = style.height;
|
|
57479
57502
|
}
|
|
57480
57503
|
el.__timer__ = setInterval(isReize, 300); // 周期性监听元素是否改变
|
|
57481
57504
|
},
|
|
57505
|
+
|
|
57482
57506
|
unbind(el) {
|
|
57483
57507
|
clearInterval(el.__timer__);
|
|
57484
57508
|
}
|