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
|
@@ -807,7 +807,7 @@ var utils = {
|
|
|
807
807
|
if (!instance) {
|
|
808
808
|
throw 'VueComponent实例为空.';
|
|
809
809
|
}
|
|
810
|
-
if (instance.$options.componentName
|
|
810
|
+
if (instance.$options.componentName && instance.$options.componentName.includes('runtimeTemplate_')) {
|
|
811
811
|
return instance;
|
|
812
812
|
} else if (instance.$parent) {
|
|
813
813
|
return utils.getRuntimeTemplateOnlineForm(instance.$parent);
|
|
@@ -1516,6 +1516,7 @@ Date.prototype.format = function (format) {
|
|
|
1516
1516
|
//quarter
|
|
1517
1517
|
S: this.getMilliseconds() //millisecond
|
|
1518
1518
|
};
|
|
1519
|
+
|
|
1519
1520
|
if (/(y+)/.test(format)) {
|
|
1520
1521
|
format = format.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length));
|
|
1521
1522
|
}
|
|
@@ -8358,6 +8359,7 @@ var external_moment_default = /*#__PURE__*/__webpack_require__.n(external_moment
|
|
|
8358
8359
|
rows: [] // 表格数据
|
|
8359
8360
|
};
|
|
8360
8361
|
},
|
|
8362
|
+
|
|
8361
8363
|
created() {
|
|
8362
8364
|
this.initParams();
|
|
8363
8365
|
this.loadData();
|
|
@@ -9432,6 +9434,7 @@ const {
|
|
|
9432
9434
|
cacheDicData: {} // 缓存字典数据
|
|
9433
9435
|
};
|
|
9434
9436
|
},
|
|
9437
|
+
|
|
9435
9438
|
computed: {
|
|
9436
9439
|
columns: function () {
|
|
9437
9440
|
return eval(Object(_util_base64_js__WEBPACK_IMPORTED_MODULE_2__[/* decode */ "a"])(this.dataColumns));
|
|
@@ -12732,12 +12735,12 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
12732
12735
|
// ESM COMPAT FLAG
|
|
12733
12736
|
__webpack_require__.r(__webpack_exports__);
|
|
12734
12737
|
|
|
12735
|
-
// 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=
|
|
12738
|
+
// 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
|
|
12736
12739
|
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)}
|
|
12737
12740
|
var staticRenderFns = []
|
|
12738
12741
|
|
|
12739
12742
|
|
|
12740
|
-
// CONCATENATED MODULE: ./packages/OnlineForm/src/Form.vue?vue&type=template&id=
|
|
12743
|
+
// CONCATENATED MODULE: ./packages/OnlineForm/src/Form.vue?vue&type=template&id=d5f9d1ba&scoped=true
|
|
12741
12744
|
|
|
12742
12745
|
// EXTERNAL MODULE: ./src/utils.js
|
|
12743
12746
|
var utils = __webpack_require__("025e");
|
|
@@ -12895,7 +12898,7 @@ var external_vue_default = /*#__PURE__*/__webpack_require__.n(external_vue_);
|
|
|
12895
12898
|
});
|
|
12896
12899
|
},
|
|
12897
12900
|
init() {
|
|
12898
|
-
this.currentComponent = this.scopeName;
|
|
12901
|
+
this.currentComponent = 'runtimeTemplate_' + this.scopeName;
|
|
12899
12902
|
this.loadStatus = 1;
|
|
12900
12903
|
external_vue_default.a.component(this.currentComponent, {
|
|
12901
12904
|
componentName: this.currentComponent,
|
|
@@ -12944,11 +12947,11 @@ var external_vue_default = /*#__PURE__*/__webpack_require__.n(external_vue_);
|
|
|
12944
12947
|
});
|
|
12945
12948
|
// CONCATENATED MODULE: ./packages/OnlineForm/src/Form.vue?vue&type=script&lang=js
|
|
12946
12949
|
/* harmony default export */ var src_Formvue_type_script_lang_js = (Formvue_type_script_lang_js);
|
|
12947
|
-
// EXTERNAL MODULE: ./packages/OnlineForm/src/Form.vue?vue&type=style&index=0&id=
|
|
12948
|
-
var
|
|
12950
|
+
// EXTERNAL MODULE: ./packages/OnlineForm/src/Form.vue?vue&type=style&index=0&id=d5f9d1ba&prod&lang=scss
|
|
12951
|
+
var Formvue_type_style_index_0_id_d5f9d1ba_prod_lang_scss = __webpack_require__("905c");
|
|
12949
12952
|
|
|
12950
|
-
// EXTERNAL MODULE: ./packages/OnlineForm/src/Form.vue?vue&type=style&index=1&id=
|
|
12951
|
-
var
|
|
12953
|
+
// EXTERNAL MODULE: ./packages/OnlineForm/src/Form.vue?vue&type=style&index=1&id=d5f9d1ba&prod&lang=scss&scoped=true
|
|
12954
|
+
var Formvue_type_style_index_1_id_d5f9d1ba_prod_lang_scss_scoped_true = __webpack_require__("65c8");
|
|
12952
12955
|
|
|
12953
12956
|
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
12954
12957
|
var componentNormalizer = __webpack_require__("2877");
|
|
@@ -12969,7 +12972,7 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
12969
12972
|
staticRenderFns,
|
|
12970
12973
|
false,
|
|
12971
12974
|
null,
|
|
12972
|
-
"
|
|
12975
|
+
"d5f9d1ba",
|
|
12973
12976
|
null
|
|
12974
12977
|
|
|
12975
12978
|
)
|
|
@@ -13240,6 +13243,7 @@ var formDataUpdate = __webpack_require__("2cfe");
|
|
|
13240
13243
|
if (result != '') {
|
|
13241
13244
|
this.relatedQueryLoad(); // 触发绑定的关联查询
|
|
13242
13245
|
}
|
|
13246
|
+
|
|
13243
13247
|
this.$emit('input', result);
|
|
13244
13248
|
}
|
|
13245
13249
|
}
|
|
@@ -19274,6 +19278,7 @@ const CustomQuery = {
|
|
|
19274
19278
|
// )
|
|
19275
19279
|
// })
|
|
19276
19280
|
},
|
|
19281
|
+
|
|
19277
19282
|
_throwException: msg => {
|
|
19278
19283
|
element_ui__WEBPACK_IMPORTED_MODULE_2__["Message"].error(msg);
|
|
19279
19284
|
throw msg;
|
|
@@ -22252,13 +22257,6 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
22252
22257
|
|
|
22253
22258
|
/***/ }),
|
|
22254
22259
|
|
|
22255
|
-
/***/ "6164":
|
|
22256
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
22257
|
-
|
|
22258
|
-
// extracted by mini-css-extract-plugin
|
|
22259
|
-
|
|
22260
|
-
/***/ }),
|
|
22261
|
-
|
|
22262
22260
|
/***/ "618e":
|
|
22263
22261
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
22264
22262
|
|
|
@@ -23551,22 +23549,22 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
23551
23549
|
|
|
23552
23550
|
/***/ }),
|
|
23553
23551
|
|
|
23554
|
-
/***/ "
|
|
23555
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
23556
|
-
|
|
23557
|
-
// extracted by mini-css-extract-plugin
|
|
23558
|
-
|
|
23559
|
-
/***/ }),
|
|
23560
|
-
|
|
23561
|
-
/***/ "65f5":
|
|
23552
|
+
/***/ "65c8":
|
|
23562
23553
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
23563
23554
|
|
|
23564
23555
|
"use strict";
|
|
23565
|
-
/* harmony import */ var
|
|
23566
|
-
/* harmony import */ var
|
|
23556
|
+
/* 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");
|
|
23557
|
+
/* 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__);
|
|
23567
23558
|
/* unused harmony reexport * */
|
|
23568
23559
|
|
|
23569
23560
|
|
|
23561
|
+
/***/ }),
|
|
23562
|
+
|
|
23563
|
+
/***/ "65ea":
|
|
23564
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
23565
|
+
|
|
23566
|
+
// extracted by mini-css-extract-plugin
|
|
23567
|
+
|
|
23570
23568
|
/***/ }),
|
|
23571
23569
|
|
|
23572
23570
|
/***/ "6654":
|
|
@@ -25343,17 +25341,6 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
25343
25341
|
|
|
25344
25342
|
/* harmony default export */ var main = __webpack_exports__["default"] = (component.exports);
|
|
25345
25343
|
|
|
25346
|
-
/***/ }),
|
|
25347
|
-
|
|
25348
|
-
/***/ "706f":
|
|
25349
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
25350
|
-
|
|
25351
|
-
"use strict";
|
|
25352
|
-
/* 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");
|
|
25353
|
-
/* 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__);
|
|
25354
|
-
/* unused harmony reexport * */
|
|
25355
|
-
|
|
25356
|
-
|
|
25357
25344
|
/***/ }),
|
|
25358
25345
|
|
|
25359
25346
|
/***/ "707c":
|
|
@@ -29430,6 +29417,7 @@ var external_lodash_default = /*#__PURE__*/__webpack_require__.n(external_lodash
|
|
|
29430
29417
|
fixedParams: {} // 传过来的固定值
|
|
29431
29418
|
};
|
|
29432
29419
|
},
|
|
29420
|
+
|
|
29433
29421
|
watch: {
|
|
29434
29422
|
props1: function () {
|
|
29435
29423
|
//树形
|
|
@@ -33242,6 +33230,17 @@ _main_vue__WEBPACK_IMPORTED_MODULE_0__["default"].register({
|
|
|
33242
33230
|
|
|
33243
33231
|
// extracted by mini-css-extract-plugin
|
|
33244
33232
|
|
|
33233
|
+
/***/ }),
|
|
33234
|
+
|
|
33235
|
+
/***/ "905c":
|
|
33236
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
33237
|
+
|
|
33238
|
+
"use strict";
|
|
33239
|
+
/* 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");
|
|
33240
|
+
/* 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__);
|
|
33241
|
+
/* unused harmony reexport * */
|
|
33242
|
+
|
|
33243
|
+
|
|
33245
33244
|
/***/ }),
|
|
33246
33245
|
|
|
33247
33246
|
/***/ "9084":
|
|
@@ -33269,7 +33268,7 @@ _main_vue__WEBPACK_IMPORTED_MODULE_0__["default"].register({
|
|
|
33269
33268
|
/***/ "9224":
|
|
33270
33269
|
/***/ (function(module) {
|
|
33271
33270
|
|
|
33272
|
-
module.exports = JSON.parse("{\"a\":\"1.0.
|
|
33271
|
+
module.exports = JSON.parse("{\"a\":\"1.0.82\"}");
|
|
33273
33272
|
|
|
33274
33273
|
/***/ }),
|
|
33275
33274
|
|
|
@@ -35554,6 +35553,7 @@ function watermark(teleport, options = {}) {
|
|
|
35554
35553
|
//水印长度
|
|
35555
35554
|
watermark_angle: 20 //水印倾斜度数
|
|
35556
35555
|
};
|
|
35556
|
+
|
|
35557
35557
|
const settings = Object.assign(defaultOptions, options);
|
|
35558
35558
|
const container = document.querySelector(teleport);
|
|
35559
35559
|
const containerWidth = container.clientWidth;
|
|
@@ -38321,6 +38321,7 @@ const {
|
|
|
38321
38321
|
}
|
|
38322
38322
|
//conditionStr = conditionStr+cellValue+condition[m].op+condition[m].val;
|
|
38323
38323
|
}
|
|
38324
|
+
|
|
38324
38325
|
if (i > 0) {
|
|
38325
38326
|
alarmScript += ' else ';
|
|
38326
38327
|
}
|
|
@@ -38767,6 +38768,7 @@ var staticRenderFns = []
|
|
|
38767
38768
|
this.loadData();
|
|
38768
38769
|
//this.dialogVisible = true
|
|
38769
38770
|
},
|
|
38771
|
+
|
|
38770
38772
|
handleTabClick(tab) {
|
|
38771
38773
|
this.currentIndex = Number(tab.index);
|
|
38772
38774
|
this.pageBean = {
|
|
@@ -39386,6 +39388,13 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
39386
39388
|
|
|
39387
39389
|
/***/ }),
|
|
39388
39390
|
|
|
39391
|
+
/***/ "b494":
|
|
39392
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
39393
|
+
|
|
39394
|
+
// extracted by mini-css-extract-plugin
|
|
39395
|
+
|
|
39396
|
+
/***/ }),
|
|
39397
|
+
|
|
39389
39398
|
/***/ "b4eb":
|
|
39390
39399
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
39391
39400
|
|
|
@@ -39782,6 +39791,13 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
39782
39791
|
|
|
39783
39792
|
/***/ }),
|
|
39784
39793
|
|
|
39794
|
+
/***/ "b86c":
|
|
39795
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
39796
|
+
|
|
39797
|
+
// extracted by mini-css-extract-plugin
|
|
39798
|
+
|
|
39799
|
+
/***/ }),
|
|
39800
|
+
|
|
39785
39801
|
/***/ "b895":
|
|
39786
39802
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
39787
39803
|
|
|
@@ -40903,13 +40919,6 @@ _main_vue__WEBPACK_IMPORTED_MODULE_0__["default"].register({
|
|
|
40903
40919
|
|
|
40904
40920
|
/***/ }),
|
|
40905
40921
|
|
|
40906
|
-
/***/ "c098":
|
|
40907
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
40908
|
-
|
|
40909
|
-
// extracted by mini-css-extract-plugin
|
|
40910
|
-
|
|
40911
|
-
/***/ }),
|
|
40912
|
-
|
|
40913
40922
|
/***/ "c0f0":
|
|
40914
40923
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
40915
40924
|
|
|
@@ -42224,6 +42233,7 @@ module.exports = require("echarts/lib/echarts.js");
|
|
|
42224
42233
|
if (subData[key].length > 0) {
|
|
42225
42234
|
subData[key] = []; //有则清空
|
|
42226
42235
|
}
|
|
42236
|
+
|
|
42227
42237
|
const sunTabName = key.replace('sub_', '');
|
|
42228
42238
|
if (this.permission.table[sunTabName] && (this.permission.table[sunTabName].required == true || this.permission.table[sunTabName].required == 'true')) {
|
|
42229
42239
|
this.$nextTick(() => {
|
|
@@ -42300,6 +42310,7 @@ module.exports = require("echarts/lib/echarts.js");
|
|
|
42300
42310
|
this.$forceUpdate(); //迫使 Vue 实例重新渲染
|
|
42301
42311
|
}
|
|
42302
42312
|
},
|
|
42313
|
+
|
|
42303
42314
|
addSubTableByName(subTableName) {
|
|
42304
42315
|
for (let boAlias in this.data) {
|
|
42305
42316
|
let subInitData = JSON.parse(JSON.stringify(this.data[boAlias].initData[subTableName] || {}));
|
|
@@ -43048,6 +43059,7 @@ _main_vue__WEBPACK_IMPORTED_MODULE_0__["default"].register({
|
|
|
43048
43059
|
},
|
|
43049
43060
|
iframeSrcJs: String // 动态url base64格式
|
|
43050
43061
|
},
|
|
43062
|
+
|
|
43051
43063
|
data() {
|
|
43052
43064
|
return {
|
|
43053
43065
|
subPageData: {},
|
|
@@ -45220,7 +45232,7 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
45220
45232
|
this.$validator = this.$root.$validator;
|
|
45221
45233
|
let parent = this.$parent || this.$root;
|
|
45222
45234
|
let name = parent.$options.componentName;
|
|
45223
|
-
while (parent && (!name || name
|
|
45235
|
+
while (parent && (!name || !name.includes('runtimeTemplate_'))) {
|
|
45224
45236
|
parent = parent.$parent;
|
|
45225
45237
|
if (parent) {
|
|
45226
45238
|
name = parent.$options.componentName;
|
|
@@ -49284,6 +49296,7 @@ var CustomQuery = __webpack_require__("5558");
|
|
|
49284
49296
|
// }
|
|
49285
49297
|
// }, 300)
|
|
49286
49298
|
},
|
|
49299
|
+
|
|
49287
49300
|
checkNode(data, this_, pnode) {
|
|
49288
49301
|
if (!data.Pid) {
|
|
49289
49302
|
//不清楚是不是有地方数据返回是Pid,这里做个判断
|
|
@@ -49484,6 +49497,7 @@ var CustomQuery = __webpack_require__("5558");
|
|
|
49484
49497
|
// this.checkBoxDataAll.splice(item, 1)
|
|
49485
49498
|
}
|
|
49486
49499
|
}
|
|
49500
|
+
|
|
49487
49501
|
this.syncInputValue();
|
|
49488
49502
|
},
|
|
49489
49503
|
//判断数据是否包含某个对象,并返回数据包含对象的下标
|
|
@@ -49913,6 +49927,7 @@ var utils = __webpack_require__("025e");
|
|
|
49913
49927
|
city: '全国',
|
|
49914
49928
|
citylimit: false //是否限制城市内搜索
|
|
49915
49929
|
},
|
|
49930
|
+
|
|
49916
49931
|
plugin: [],
|
|
49917
49932
|
mapDiaVisible: false,
|
|
49918
49933
|
preAddress: '',
|
|
@@ -52181,6 +52196,7 @@ const req = function (url, data = {}, option = {}) {
|
|
|
52181
52196
|
// this.$refs.multipleTemplateTable.handleFilterChange(this.filterMap)
|
|
52182
52197
|
// }, 100)
|
|
52183
52198
|
},
|
|
52199
|
+
|
|
52184
52200
|
methods: {
|
|
52185
52201
|
//因为row.id_ 或row.id可能会有重复,所以加随机值使其唯一
|
|
52186
52202
|
getRowKey(row) {
|
|
@@ -54194,6 +54210,7 @@ const req = function (url, data = {}, option = {}) {
|
|
|
54194
54210
|
window.open(this.$router.resolve(url).href, '_blank');
|
|
54195
54211
|
//this.$router.push(url)
|
|
54196
54212
|
},
|
|
54213
|
+
|
|
54197
54214
|
//确定导出
|
|
54198
54215
|
submitExport() {
|
|
54199
54216
|
if (!this.exportData || this.exportData.expField.length < 1) {
|
|
@@ -54397,6 +54414,7 @@ const req = function (url, data = {}, option = {}) {
|
|
|
54397
54414
|
this.getSubData(this, refId);
|
|
54398
54415
|
/* }*/
|
|
54399
54416
|
},
|
|
54417
|
+
|
|
54400
54418
|
async getSubData(_me, refId) {
|
|
54401
54419
|
//let ents = this.ents;
|
|
54402
54420
|
let ents = JSON.parse(_me.templateInfo.subField);
|
|
@@ -54632,6 +54650,7 @@ const req = function (url, data = {}, option = {}) {
|
|
|
54632
54650
|
// }
|
|
54633
54651
|
});
|
|
54634
54652
|
}
|
|
54653
|
+
|
|
54635
54654
|
this.handleSubCurrentChange(1, tab);
|
|
54636
54655
|
},
|
|
54637
54656
|
importSub(param) {
|
|
@@ -54705,6 +54724,7 @@ const req = function (url, data = {}, option = {}) {
|
|
|
54705
54724
|
// });
|
|
54706
54725
|
// window.open(href, "_blank");
|
|
54707
54726
|
},
|
|
54727
|
+
|
|
54708
54728
|
initSwitchStatus() {
|
|
54709
54729
|
//初始化开关状态
|
|
54710
54730
|
let manages = utils["a" /* default */].parseToJson(this.templateInfo.manageField);
|
|
@@ -54786,6 +54806,7 @@ const req = function (url, data = {}, option = {}) {
|
|
|
54786
54806
|
// })
|
|
54787
54807
|
});
|
|
54788
54808
|
},
|
|
54809
|
+
|
|
54789
54810
|
display(mpDisplay) {
|
|
54790
54811
|
if (this.isMobile) {
|
|
54791
54812
|
return mpDisplay === '1';
|
|
@@ -56048,6 +56069,7 @@ var external_lodash_default = /*#__PURE__*/__webpack_require__.n(external_lodash
|
|
|
56048
56069
|
}
|
|
56049
56070
|
});
|
|
56050
56071
|
}
|
|
56072
|
+
|
|
56051
56073
|
CustomQuery["a" /* default */].load(alias, queryParams).then(data => {
|
|
56052
56074
|
if (data && data.constructor == Array && resultBind && resultBind.constructor == Object) {
|
|
56053
56075
|
// 关联查询值回绑时,默认获取返回的第一条记录
|
|
@@ -57465,11 +57487,13 @@ const getPopconfirm = function (el, binding) {
|
|
|
57465
57487
|
if (width !== style.width || height !== style.height) {
|
|
57466
57488
|
binding.value(); // 执行传入的方法
|
|
57467
57489
|
}
|
|
57490
|
+
|
|
57468
57491
|
width = style.width;
|
|
57469
57492
|
height = style.height;
|
|
57470
57493
|
}
|
|
57471
57494
|
el.__timer__ = setInterval(isReize, 300); // 周期性监听元素是否改变
|
|
57472
57495
|
},
|
|
57496
|
+
|
|
57473
57497
|
unbind(el) {
|
|
57474
57498
|
clearInterval(el.__timer__);
|
|
57475
57499
|
}
|