centaline-data-driven 1.5.44 → 1.5.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/package.json +1 -1
- package/release-log.md +11 -0
- package/src/SearchTree.vue +2 -2
- package/src/centaline/dynamicDetail/src/dynamicCustomerSimpleDetail.vue +1 -1
- package/src/centaline/dynamicSearchList/src/dynamicSearchList.vue +19 -0
- package/src/centaline/dynamicSearchList/src/dynamicTableStats.vue +8 -8
- package/src/centaline/dynamicSearchListTab/src/dynamicSearchListOne.vue +20 -0
- package/src/centaline/dynamicSearchListTab/src/dynamicSearchListTab.vue +3 -1
- package/src/centaline/dynamicTree/src/dynamicSearchTree.vue +1 -1
- package/src/main.js +1 -1
- package/wwwroot/static/centaline/centaline-data-driven.js +77 -36
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
package/package.json
CHANGED
package/release-log.md
CHANGED
package/src/SearchTree.vue
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div id="app-Tree" style="height:100%;position: fixed;width:100%">
|
|
3
3
|
<ct-treelist :flagsearch="true" :apiParam="apiParam" :leftWidth="'280'"
|
|
4
|
-
:searchConditionApi="'/
|
|
5
|
-
:searchDataApi="'/
|
|
4
|
+
:searchConditionApi="'/SystemParameterCatalogList/getLayoutOfSearch'"
|
|
5
|
+
:searchDataApi="'/SystemParameterCatalogList/getListOfSearchModel'" @loaded="loaded"></ct-treelist>
|
|
6
6
|
<ct-dialog-list></ct-dialog-list>
|
|
7
7
|
</div>
|
|
8
8
|
</template>
|
|
@@ -339,7 +339,7 @@ export default {
|
|
|
339
339
|
let self = this;
|
|
340
340
|
this.$nextTick(() => {
|
|
341
341
|
if (this.$refs.main) {
|
|
342
|
-
if (this.model.routerForQRCode) {
|
|
342
|
+
if (this.model && this.model.routerForQRCode) {
|
|
343
343
|
this.topWidth = this.$refs.main.clientWidth - 140;
|
|
344
344
|
}
|
|
345
345
|
else {
|
|
@@ -151,6 +151,7 @@
|
|
|
151
151
|
}
|
|
152
152
|
if(this.$refs.table){
|
|
153
153
|
this.$refs.table.resetScrollActivated();
|
|
154
|
+
this.$refs.table.setTableHeight();
|
|
154
155
|
}
|
|
155
156
|
})
|
|
156
157
|
},
|
|
@@ -228,11 +229,29 @@
|
|
|
228
229
|
}
|
|
229
230
|
},
|
|
230
231
|
resizeSearchList() {
|
|
232
|
+
if(document.body.clientWidth && document.body.clientWidth>=1024){
|
|
233
|
+
if(!this.flagSideBar && this.$refs.table){
|
|
234
|
+
this.flagSideBar=this.$refs.table.model.flagSideBar;
|
|
235
|
+
if(this.flagSideBar && this.flagSideBarOfData){
|
|
236
|
+
this.sideMenuClickHandler('close');
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
else{
|
|
241
|
+
this.flagSideBar=false;
|
|
242
|
+
this.sideBarStatus ='close';
|
|
243
|
+
this.sideBarRight=-this.sideBarWidth;
|
|
244
|
+
this.sideBarWidth=0;
|
|
245
|
+
this.searchWidth=0;
|
|
246
|
+
this.sideBarMenuRight=0;
|
|
247
|
+
}
|
|
248
|
+
|
|
231
249
|
if(this.flagSideBar && this.flagSideBarOfData){
|
|
232
250
|
if(this.sideBarStatus=='open' && this.$refs.main){
|
|
233
251
|
this.searchWidth=this.$refs.main.clientWidth-this.sideBarWidth;
|
|
234
252
|
}
|
|
235
253
|
}
|
|
254
|
+
|
|
236
255
|
if(this.$refs.main){
|
|
237
256
|
this.listHeight=this.$refs.main.offsetHeight;
|
|
238
257
|
if(this.$refs.detail){
|
|
@@ -152,7 +152,7 @@ export default {
|
|
|
152
152
|
isHidden: true, //是否开启操作栏隐藏设置,默认开启
|
|
153
153
|
showNum: 3, //如果isHidden为true时,个数大于3就会隐藏,默认是3
|
|
154
154
|
appendId: "", //将浮动栏添加到对应id或者class节点中。或者.xxx。传空字符串是添加到body中。
|
|
155
|
-
trigger: "
|
|
155
|
+
trigger: "click", //触发方式,传值可查看Popper UI组件trigger属性
|
|
156
156
|
placement: "bottom-start", //方向,传值可查看Popper UI组件placement属性
|
|
157
157
|
},
|
|
158
158
|
iconSort: require("../../../assets/sort.png"),
|
|
@@ -160,11 +160,9 @@ export default {
|
|
|
160
160
|
},
|
|
161
161
|
mounted() {
|
|
162
162
|
var self = this;
|
|
163
|
-
self.showWidth =
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
self.showWidth =
|
|
167
|
-
self.$refs.tableStatistics.offsetWidth || document.body.clientWidth;
|
|
163
|
+
self.showWidth = self.$refs.tableStatistics && self.$refs.tableStatistics.offsetWidth || document.body.clientWidth;
|
|
164
|
+
window.addEventListener('resize', function () {
|
|
165
|
+
self.showWidth = self.$refs.tableStatistics && self.$refs.tableStatistics.offsetWidth || document.body.clientWidth;
|
|
168
166
|
});
|
|
169
167
|
},
|
|
170
168
|
methods: {
|
|
@@ -249,10 +247,10 @@ export default {
|
|
|
249
247
|
} else {
|
|
250
248
|
moreWidth = 0;
|
|
251
249
|
}
|
|
252
|
-
if (self.showWidth < sumWidth + moreWidth) {
|
|
250
|
+
if (self.showWidth -i < sumWidth + moreWidth) {
|
|
253
251
|
showIndex = i;
|
|
254
252
|
break;
|
|
255
|
-
} else if (self.showWidth < nextWidth + moreWidth) {
|
|
253
|
+
} else if (self.showWidth -i < nextWidth + moreWidth) {
|
|
256
254
|
showIndex = i + 1;
|
|
257
255
|
break;
|
|
258
256
|
}
|
|
@@ -278,6 +276,7 @@ export default {
|
|
|
278
276
|
handleClick(ev, obj, flagRefreshTable,type,index) {
|
|
279
277
|
var self = this;
|
|
280
278
|
self.flagClick=true;
|
|
279
|
+
self.FlagStatistics = false;
|
|
281
280
|
self.selectStats = obj.key;
|
|
282
281
|
var fields = self.model.searchData(
|
|
283
282
|
obj.fieldName1,
|
|
@@ -433,6 +432,7 @@ export default {
|
|
|
433
432
|
text-align: left;
|
|
434
433
|
top: 2px;
|
|
435
434
|
right: 0px;
|
|
435
|
+
cursor: pointer;
|
|
436
436
|
}
|
|
437
437
|
.my-icon-more {
|
|
438
438
|
width: 14px;
|
|
@@ -93,6 +93,9 @@
|
|
|
93
93
|
this.$refs.detail.$children[0].refreshPage();
|
|
94
94
|
}
|
|
95
95
|
}
|
|
96
|
+
if(this.$refs.table){
|
|
97
|
+
this.$refs.table.setTableHeight();
|
|
98
|
+
}
|
|
96
99
|
})
|
|
97
100
|
},
|
|
98
101
|
data() {
|
|
@@ -211,6 +214,23 @@
|
|
|
211
214
|
}
|
|
212
215
|
},
|
|
213
216
|
resizeSearchList() {
|
|
217
|
+
if(document.body.clientWidth && document.body.clientWidth>=1024){
|
|
218
|
+
if(!this.flagSideBar && this.$refs.table){
|
|
219
|
+
this.flagSideBar=this.$refs.table.model.flagSideBar;
|
|
220
|
+
if(this.flagSideBar && this.flagSideBarOfData){
|
|
221
|
+
this.sideMenuClickHandler('close');
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
else{
|
|
226
|
+
this.flagSideBar=false;
|
|
227
|
+
this.sideBarStatus ='close';
|
|
228
|
+
this.sideBarRight=-this.sideBarWidth;
|
|
229
|
+
this.sideBarWidth=0;
|
|
230
|
+
this.searchWidth=0;
|
|
231
|
+
this.sideBarMenuRight=0;
|
|
232
|
+
}
|
|
233
|
+
|
|
214
234
|
if(this.flagSideBar && this.flagSideBarOfData){
|
|
215
235
|
if(this.sideBarStatus=='open' && this.$refs.main){
|
|
216
236
|
this.searchWidth=this.$refs.main.clientWidth-this.sideBarWidth;
|
|
@@ -186,7 +186,9 @@
|
|
|
186
186
|
this.$emit('refreshParent');
|
|
187
187
|
},
|
|
188
188
|
resize() {
|
|
189
|
-
|
|
189
|
+
if(this.$refs.main){
|
|
190
|
+
this.listHeight=(this.$refs.main.offsetHeight-42)+'px';
|
|
191
|
+
}
|
|
190
192
|
if(this.$refs['searchlist'+this.activeIndex] && this.$refs['searchlist'+this.activeIndex][0]){
|
|
191
193
|
this.$refs['searchlist'+this.activeIndex][0].resize();
|
|
192
194
|
this.$refs['searchlist'+this.activeIndex][0].resizeSearchList();
|
package/src/main.js
CHANGED
|
@@ -58,7 +58,7 @@ Vue.use(centaline, {
|
|
|
58
58
|
return {
|
|
59
59
|
oldToken: 'cd6060fd-36e5-47f1-8cb9-7fc6f61e645c',
|
|
60
60
|
token:'aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEjjsOwjAQRO_iOiv5s1570zn-NBwiIuBIoUIkkUCIuxMEdPRMMRq95s1dzOsgWmHIccikIFr0gKQsMJYCURKxKdKYlHr-BH7UNz26yCFkByg7Aiw2A-tYwLDtEubgUibRiHo9i1aRRy-dtdSIab-8gdNKvcA618uu3v5x7rRMm3YkOZAfR6BtAWp_3LQHBNI8KHbkqlHi8QQAAP__.RrBgBqaFlp478oO3g5k_EEtjPt_o8qpJBkzgSP78Wa4',
|
|
61
|
-
authObject: '{token:"aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.
|
|
61
|
+
authObject: '{token:"aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEjrEOgjAURf-lMy9p6aPvlY2-wuJHkAIlwckIJBrjv6tRN3fPcIeznHtT6z6oWkVuNEpnQdqyAoxUQdMRQxBmHUqyGLj3H-DHfOmNQU_GtdB4EkCHFtgIg6AT7GJrJURVqHw5qdo4b5CRNBZqSdtbWM_2JfY1nw_5-o9zx215Zj2lZFEbGGbUgKUfIc2ZIdPoHI5I05TV_QEAAP__.JcB2iXcfHNcB2eJQ_kEIhID-UXCMx-HDoIuv9ZIA33I"}',
|
|
62
62
|
|
|
63
63
|
originalRequestURL: 'http://10.88.22.67:8080',
|
|
64
64
|
EstateInfo: '{"estateId":"201806071109550C867184E8BCA56EC3","estateName":"C%E5%BE%A1%E6%9E%97%E5%B1%B1%E6%99%AF%E6%A5%BC"}',
|
|
@@ -5279,7 +5279,7 @@ module.exports = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAASCAYAAAAz
|
|
|
5279
5279
|
"use strict";
|
|
5280
5280
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchList_vue__ = __webpack_require__(160);
|
|
5281
5281
|
/* unused harmony namespace reexport */
|
|
5282
|
-
/* harmony import */ var
|
|
5282
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_f0506bd2_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchList_vue__ = __webpack_require__(463);
|
|
5283
5283
|
function injectStyle (ssrContext) {
|
|
5284
5284
|
__webpack_require__(406)
|
|
5285
5285
|
}
|
|
@@ -5294,12 +5294,12 @@ var __vue_template_functional__ = false
|
|
|
5294
5294
|
/* styles */
|
|
5295
5295
|
var __vue_styles__ = injectStyle
|
|
5296
5296
|
/* scopeId */
|
|
5297
|
-
var __vue_scopeId__ = "data-v-
|
|
5297
|
+
var __vue_scopeId__ = "data-v-f0506bd2"
|
|
5298
5298
|
/* moduleIdentifier (server only) */
|
|
5299
5299
|
var __vue_module_identifier__ = null
|
|
5300
5300
|
var Component = normalizeComponent(
|
|
5301
5301
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchList_vue__["a" /* default */],
|
|
5302
|
-
|
|
5302
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_f0506bd2_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchList_vue__["a" /* default */],
|
|
5303
5303
|
__vue_template_functional__,
|
|
5304
5304
|
__vue_styles__,
|
|
5305
5305
|
__vue_scopeId__,
|
|
@@ -15686,6 +15686,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
15686
15686
|
}
|
|
15687
15687
|
if (_this2.$refs.table) {
|
|
15688
15688
|
_this2.$refs.table.resetScrollActivated();
|
|
15689
|
+
_this2.$refs.table.setTableHeight();
|
|
15689
15690
|
}
|
|
15690
15691
|
});
|
|
15691
15692
|
},
|
|
@@ -15761,11 +15762,28 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
15761
15762
|
}
|
|
15762
15763
|
},
|
|
15763
15764
|
resizeSearchList: function resizeSearchList() {
|
|
15765
|
+
if (document.body.clientWidth && document.body.clientWidth >= 1024) {
|
|
15766
|
+
if (!this.flagSideBar && this.$refs.table) {
|
|
15767
|
+
this.flagSideBar = this.$refs.table.model.flagSideBar;
|
|
15768
|
+
if (this.flagSideBar && this.flagSideBarOfData) {
|
|
15769
|
+
this.sideMenuClickHandler('close');
|
|
15770
|
+
}
|
|
15771
|
+
}
|
|
15772
|
+
} else {
|
|
15773
|
+
this.flagSideBar = false;
|
|
15774
|
+
this.sideBarStatus = 'close';
|
|
15775
|
+
this.sideBarRight = -this.sideBarWidth;
|
|
15776
|
+
this.sideBarWidth = 0;
|
|
15777
|
+
this.searchWidth = 0;
|
|
15778
|
+
this.sideBarMenuRight = 0;
|
|
15779
|
+
}
|
|
15780
|
+
|
|
15764
15781
|
if (this.flagSideBar && this.flagSideBarOfData) {
|
|
15765
15782
|
if (this.sideBarStatus == 'open' && this.$refs.main) {
|
|
15766
15783
|
this.searchWidth = this.$refs.main.clientWidth - this.sideBarWidth;
|
|
15767
15784
|
}
|
|
15768
15785
|
}
|
|
15786
|
+
|
|
15769
15787
|
if (this.$refs.main) {
|
|
15770
15788
|
this.listHeight = this.$refs.main.offsetHeight;
|
|
15771
15789
|
if (this.$refs.detail) {
|
|
@@ -19062,7 +19080,7 @@ module.exports = function (KEY, exec) {
|
|
|
19062
19080
|
isHidden: true, //是否开启操作栏隐藏设置,默认开启
|
|
19063
19081
|
showNum: 3, //如果isHidden为true时,个数大于3就会隐藏,默认是3
|
|
19064
19082
|
appendId: "", //将浮动栏添加到对应id或者class节点中。或者.xxx。传空字符串是添加到body中。
|
|
19065
|
-
trigger: "
|
|
19083
|
+
trigger: "click", //触发方式,传值可查看Popper UI组件trigger属性
|
|
19066
19084
|
placement: "bottom-start" //方向,传值可查看Popper UI组件placement属性
|
|
19067
19085
|
},
|
|
19068
19086
|
iconSort: __webpack_require__(40)
|
|
@@ -19070,9 +19088,9 @@ module.exports = function (KEY, exec) {
|
|
|
19070
19088
|
},
|
|
19071
19089
|
mounted: function mounted() {
|
|
19072
19090
|
var self = this;
|
|
19073
|
-
self.showWidth = self.$refs.tableStatistics.offsetWidth || document.body.clientWidth;
|
|
19091
|
+
self.showWidth = self.$refs.tableStatistics && self.$refs.tableStatistics.offsetWidth || document.body.clientWidth;
|
|
19074
19092
|
window.addEventListener('resize', function () {
|
|
19075
|
-
self.showWidth = self.$refs.tableStatistics.offsetWidth || document.body.clientWidth;
|
|
19093
|
+
self.showWidth = self.$refs.tableStatistics && self.$refs.tableStatistics.offsetWidth || document.body.clientWidth;
|
|
19076
19094
|
});
|
|
19077
19095
|
},
|
|
19078
19096
|
|
|
@@ -19153,10 +19171,10 @@ module.exports = function (KEY, exec) {
|
|
|
19153
19171
|
} else {
|
|
19154
19172
|
moreWidth = 0;
|
|
19155
19173
|
}
|
|
19156
|
-
if (self.showWidth < sumWidth + moreWidth) {
|
|
19174
|
+
if (self.showWidth - i < sumWidth + moreWidth) {
|
|
19157
19175
|
showIndex = i;
|
|
19158
19176
|
break;
|
|
19159
|
-
} else if (self.showWidth < nextWidth + moreWidth) {
|
|
19177
|
+
} else if (self.showWidth - i < nextWidth + moreWidth) {
|
|
19160
19178
|
showIndex = i + 1;
|
|
19161
19179
|
break;
|
|
19162
19180
|
}
|
|
@@ -19179,6 +19197,7 @@ module.exports = function (KEY, exec) {
|
|
|
19179
19197
|
handleClick: function handleClick(ev, obj, flagRefreshTable, type, index) {
|
|
19180
19198
|
var self = this;
|
|
19181
19199
|
self.flagClick = true;
|
|
19200
|
+
self.FlagStatistics = false;
|
|
19182
19201
|
self.selectStats = obj.key;
|
|
19183
19202
|
var fields = self.model.searchData(obj.fieldName1, obj.code1, obj.searchOperation, obj.searchDataType);
|
|
19184
19203
|
var model = {
|
|
@@ -26620,7 +26639,7 @@ var ctSpan = { //临时的span组件对象,用于vue双向绑定,强制更
|
|
|
26620
26639
|
var self = this;
|
|
26621
26640
|
this.$nextTick(function () {
|
|
26622
26641
|
if (_this2.$refs.main) {
|
|
26623
|
-
if (_this2.model.routerForQRCode) {
|
|
26642
|
+
if (_this2.model && _this2.model.routerForQRCode) {
|
|
26624
26643
|
_this2.topWidth = _this2.$refs.main.clientWidth - 140;
|
|
26625
26644
|
} else {
|
|
26626
26645
|
_this2.topWidth = _this2.$refs.main.clientWidth - 100;
|
|
@@ -41807,7 +41826,9 @@ var ctSpan = {
|
|
|
41807
41826
|
this.$emit('refreshParent');
|
|
41808
41827
|
},
|
|
41809
41828
|
resize: function resize() {
|
|
41810
|
-
|
|
41829
|
+
if (this.$refs.main) {
|
|
41830
|
+
this.listHeight = this.$refs.main.offsetHeight - 42 + 'px';
|
|
41831
|
+
}
|
|
41811
41832
|
if (this.$refs['searchlist' + this.activeIndex] && this.$refs['searchlist' + this.activeIndex][0]) {
|
|
41812
41833
|
this.$refs['searchlist' + this.activeIndex][0].resize();
|
|
41813
41834
|
this.$refs['searchlist' + this.activeIndex][0].resizeSearchList();
|
|
@@ -42017,6 +42038,9 @@ var ctSpan = {
|
|
|
42017
42038
|
_this.$refs.detail.$children[0].refreshPage();
|
|
42018
42039
|
}
|
|
42019
42040
|
}
|
|
42041
|
+
if (_this.$refs.table) {
|
|
42042
|
+
_this.$refs.table.setTableHeight();
|
|
42043
|
+
}
|
|
42020
42044
|
});
|
|
42021
42045
|
},
|
|
42022
42046
|
data: function data() {
|
|
@@ -42133,6 +42157,22 @@ var ctSpan = {
|
|
|
42133
42157
|
}
|
|
42134
42158
|
},
|
|
42135
42159
|
resizeSearchList: function resizeSearchList() {
|
|
42160
|
+
if (document.body.clientWidth && document.body.clientWidth >= 1024) {
|
|
42161
|
+
if (!this.flagSideBar && this.$refs.table) {
|
|
42162
|
+
this.flagSideBar = this.$refs.table.model.flagSideBar;
|
|
42163
|
+
if (this.flagSideBar && this.flagSideBarOfData) {
|
|
42164
|
+
this.sideMenuClickHandler('close');
|
|
42165
|
+
}
|
|
42166
|
+
}
|
|
42167
|
+
} else {
|
|
42168
|
+
this.flagSideBar = false;
|
|
42169
|
+
this.sideBarStatus = 'close';
|
|
42170
|
+
this.sideBarRight = -this.sideBarWidth;
|
|
42171
|
+
this.sideBarWidth = 0;
|
|
42172
|
+
this.searchWidth = 0;
|
|
42173
|
+
this.sideBarMenuRight = 0;
|
|
42174
|
+
}
|
|
42175
|
+
|
|
42136
42176
|
if (this.flagSideBar && this.flagSideBarOfData) {
|
|
42137
42177
|
if (this.sideBarStatus == 'open' && this.$refs.main) {
|
|
42138
42178
|
this.searchWidth = this.$refs.main.clientWidth - this.sideBarWidth;
|
|
@@ -43456,6 +43496,7 @@ var ctSpan = {
|
|
|
43456
43496
|
}
|
|
43457
43497
|
});
|
|
43458
43498
|
},
|
|
43499
|
+
updateCurrentRow: function updateCurrentRow(field, ev) {},
|
|
43459
43500
|
search: function search() {
|
|
43460
43501
|
this.setTreeHeight();
|
|
43461
43502
|
this.$refs.tree.search(this.$refs.treescreen.model);
|
|
@@ -48708,7 +48749,7 @@ var content = __webpack_require__(407);
|
|
|
48708
48749
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
48709
48750
|
if(content.locals) module.exports = content.locals;
|
|
48710
48751
|
// add the styles to the DOM
|
|
48711
|
-
var update = __webpack_require__(2)("
|
|
48752
|
+
var update = __webpack_require__(2)("410dec81", content, true, {});
|
|
48712
48753
|
|
|
48713
48754
|
/***/ }),
|
|
48714
48755
|
/* 407 */
|
|
@@ -48719,7 +48760,7 @@ exports = module.exports = __webpack_require__(1)(false);
|
|
|
48719
48760
|
|
|
48720
48761
|
|
|
48721
48762
|
// module
|
|
48722
|
-
exports.push([module.i, ".sidebar[data-v-
|
|
48763
|
+
exports.push([module.i, ".sidebar[data-v-f0506bd2]{z-index:1000;top:-1px;bottom:-1px;padding:0;width:auto;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);-webkit-box-shadow:0 6px 12px rgba(0,0,0,.18);box-shadow:0 6px 12px rgba(0,0,0,.18)}", ""]);
|
|
48723
48764
|
|
|
48724
48765
|
// exports
|
|
48725
48766
|
|
|
@@ -49827,7 +49868,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
|
49827
49868
|
"use strict";
|
|
49828
49869
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicTableStats_vue__ = __webpack_require__(168);
|
|
49829
49870
|
/* unused harmony namespace reexport */
|
|
49830
|
-
/* harmony import */ var
|
|
49871
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_6d6148f8_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTableStats_vue__ = __webpack_require__(438);
|
|
49831
49872
|
function injectStyle (ssrContext) {
|
|
49832
49873
|
__webpack_require__(432)
|
|
49833
49874
|
__webpack_require__(434)
|
|
@@ -49849,7 +49890,7 @@ var __vue_scopeId__ = null
|
|
|
49849
49890
|
var __vue_module_identifier__ = null
|
|
49850
49891
|
var Component = normalizeComponent(
|
|
49851
49892
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicTableStats_vue__["a" /* default */],
|
|
49852
|
-
|
|
49893
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_6d6148f8_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTableStats_vue__["a" /* default */],
|
|
49853
49894
|
__vue_template_functional__,
|
|
49854
49895
|
__vue_styles__,
|
|
49855
49896
|
__vue_scopeId__,
|
|
@@ -49870,7 +49911,7 @@ var content = __webpack_require__(433);
|
|
|
49870
49911
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
49871
49912
|
if(content.locals) module.exports = content.locals;
|
|
49872
49913
|
// add the styles to the DOM
|
|
49873
|
-
var update = __webpack_require__(2)("
|
|
49914
|
+
var update = __webpack_require__(2)("cd7f7d2e", content, true, {});
|
|
49874
49915
|
|
|
49875
49916
|
/***/ }),
|
|
49876
49917
|
/* 433 */
|
|
@@ -49897,7 +49938,7 @@ var content = __webpack_require__(435);
|
|
|
49897
49938
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
49898
49939
|
if(content.locals) module.exports = content.locals;
|
|
49899
49940
|
// add the styles to the DOM
|
|
49900
|
-
var update = __webpack_require__(2)("
|
|
49941
|
+
var update = __webpack_require__(2)("fb6ff32c", content, true, {});
|
|
49901
49942
|
|
|
49902
49943
|
/***/ }),
|
|
49903
49944
|
/* 435 */
|
|
@@ -49908,7 +49949,7 @@ exports = module.exports = __webpack_require__(1)(false);
|
|
|
49908
49949
|
|
|
49909
49950
|
|
|
49910
49951
|
// module
|
|
49911
|
-
exports.push([module.i, ".ct-table-Statistics{height:20px;margin-bottom:10px}.tab-list{position:relative;margin-bottom:10px;height:30px}.tab-list .btnTab{font-size:14px!important;font-weight:700;padding:0 18px;cursor:pointer;float:left;list-style-type:none;white-space:nowrap}.tab-list .btnTab:hover,.tab-list .popoverbtnTab:hover,.tab-list .popovertablf:hover,.tab-list .tablf:hover{color:var(--chinaRed)}.tab-list .tabl-el{max-width:150px;-webkit-box-shadow:0 6px 12px rgb(0 0 0/18%);box-shadow:0 6px 12px rgb(0 0 0/18%)}.tab-list .tablf{padding:15px 10px}.tab-list .popovertablf,.tab-list .tablf{font-size:14px!important;font-weight:700;text-align:center;display:block}.tab-list .popovertablf{padding:5px 8px}.tab-list .popoverbtnTab{font-size:14px!important;font-weight:700;cursor:pointer;float:left;list-style-type:none;padding:0 20px;white-space:nowrap}.tab-list .tdcenter{line-height:1px;height:1px;text-align:center}.tab-list .active{width:20px;border-bottom:var(--chinaRed) solid 3px}.tab-list .active,.tab-list .activecolor{color:var(--chinaRed)!important}.tab-list .btnTab span,.tab-list .popovertablf span{display:inline-block}.tab-list .icon-more{color:var(--chinaRed);font-size:20px;font-weight:900;display:inline-block;vertical-align:.5em;margin-top:-3px;cursor:pointer}.Stats-popover{margin-left:4px;height:16px}.more-dropdown{position:absolute;width:16px;height:20px;text-align:left;top:2px;right:0}.my-icon-more{width:14px;height:15px;border-top:3px solid #999;border-bottom:3px solid #999;background-color:#999;padding:3px 0;background-clip:content-box;margin-left:5px;cursor:pointer}", ""]);
|
|
49952
|
+
exports.push([module.i, ".ct-table-Statistics{height:20px;margin-bottom:10px}.tab-list{position:relative;margin-bottom:10px;height:30px}.tab-list .btnTab{font-size:14px!important;font-weight:700;padding:0 18px;cursor:pointer;float:left;list-style-type:none;white-space:nowrap}.tab-list .btnTab:hover,.tab-list .popoverbtnTab:hover,.tab-list .popovertablf:hover,.tab-list .tablf:hover{color:var(--chinaRed)}.tab-list .tabl-el{max-width:150px;-webkit-box-shadow:0 6px 12px rgb(0 0 0/18%);box-shadow:0 6px 12px rgb(0 0 0/18%)}.tab-list .tablf{padding:15px 10px}.tab-list .popovertablf,.tab-list .tablf{font-size:14px!important;font-weight:700;text-align:center;display:block}.tab-list .popovertablf{padding:5px 8px}.tab-list .popoverbtnTab{font-size:14px!important;font-weight:700;cursor:pointer;float:left;list-style-type:none;padding:0 20px;white-space:nowrap}.tab-list .tdcenter{line-height:1px;height:1px;text-align:center}.tab-list .active{width:20px;border-bottom:var(--chinaRed) solid 3px}.tab-list .active,.tab-list .activecolor{color:var(--chinaRed)!important}.tab-list .btnTab span,.tab-list .popovertablf span{display:inline-block}.tab-list .icon-more{color:var(--chinaRed);font-size:20px;font-weight:900;display:inline-block;vertical-align:.5em;margin-top:-3px;cursor:pointer}.Stats-popover{margin-left:4px;height:16px}.more-dropdown{position:absolute;width:16px;height:20px;text-align:left;top:2px;right:0;cursor:pointer}.my-icon-more{width:14px;height:15px;border-top:3px solid #999;border-bottom:3px solid #999;background-color:#999;padding:3px 0;background-clip:content-box;margin-left:5px;cursor:pointer}", ""]);
|
|
49912
49953
|
|
|
49913
49954
|
// exports
|
|
49914
49955
|
|
|
@@ -49924,7 +49965,7 @@ var content = __webpack_require__(437);
|
|
|
49924
49965
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
49925
49966
|
if(content.locals) module.exports = content.locals;
|
|
49926
49967
|
// add the styles to the DOM
|
|
49927
|
-
var update = __webpack_require__(2)("
|
|
49968
|
+
var update = __webpack_require__(2)("6b4fcb6b", content, true, {});
|
|
49928
49969
|
|
|
49929
49970
|
/***/ }),
|
|
49930
49971
|
/* 437 */
|
|
@@ -51169,7 +51210,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
|
51169
51210
|
"use strict";
|
|
51170
51211
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicCustomerSimpleDetail_vue__ = __webpack_require__(192);
|
|
51171
51212
|
/* unused harmony namespace reexport */
|
|
51172
|
-
/* harmony import */ var
|
|
51213
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_2636e975_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicCustomerSimpleDetail_vue__ = __webpack_require__(506);
|
|
51173
51214
|
function injectStyle (ssrContext) {
|
|
51174
51215
|
__webpack_require__(502)
|
|
51175
51216
|
__webpack_require__(504)
|
|
@@ -51185,12 +51226,12 @@ var __vue_template_functional__ = false
|
|
|
51185
51226
|
/* styles */
|
|
51186
51227
|
var __vue_styles__ = injectStyle
|
|
51187
51228
|
/* scopeId */
|
|
51188
|
-
var __vue_scopeId__ = "data-v-
|
|
51229
|
+
var __vue_scopeId__ = "data-v-2636e975"
|
|
51189
51230
|
/* moduleIdentifier (server only) */
|
|
51190
51231
|
var __vue_module_identifier__ = null
|
|
51191
51232
|
var Component = normalizeComponent(
|
|
51192
51233
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicCustomerSimpleDetail_vue__["a" /* default */],
|
|
51193
|
-
|
|
51234
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_2636e975_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicCustomerSimpleDetail_vue__["a" /* default */],
|
|
51194
51235
|
__vue_template_functional__,
|
|
51195
51236
|
__vue_styles__,
|
|
51196
51237
|
__vue_scopeId__,
|
|
@@ -51211,7 +51252,7 @@ var content = __webpack_require__(503);
|
|
|
51211
51252
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
51212
51253
|
if(content.locals) module.exports = content.locals;
|
|
51213
51254
|
// add the styles to the DOM
|
|
51214
|
-
var update = __webpack_require__(2)("
|
|
51255
|
+
var update = __webpack_require__(2)("6cf37b08", content, true, {});
|
|
51215
51256
|
|
|
51216
51257
|
/***/ }),
|
|
51217
51258
|
/* 503 */
|
|
@@ -51223,7 +51264,7 @@ exports = module.exports = __webpack_require__(1)(false);
|
|
|
51223
51264
|
|
|
51224
51265
|
|
|
51225
51266
|
// module
|
|
51226
|
-
exports.push([module.i, ".t-tag[data-v-
|
|
51267
|
+
exports.push([module.i, ".t-tag[data-v-2636e975]{color:#999;background:#f3f3f3;border:1px solid #d8d8d8;padding:2px 9px;border-radius:3px;margin-right:10px;font-size:12px}.more[data-v-2636e975]{background:url(" + escape(__webpack_require__(83)) + ") no-repeat;background-size:100% 100%;width:26px;height:26px;display:table-caption;cursor:pointer}", ""]);
|
|
51227
51268
|
|
|
51228
51269
|
// exports
|
|
51229
51270
|
|
|
@@ -51239,7 +51280,7 @@ var content = __webpack_require__(505);
|
|
|
51239
51280
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
51240
51281
|
if(content.locals) module.exports = content.locals;
|
|
51241
51282
|
// add the styles to the DOM
|
|
51242
|
-
var update = __webpack_require__(2)("
|
|
51283
|
+
var update = __webpack_require__(2)("38db0422", content, true, {});
|
|
51243
51284
|
|
|
51244
51285
|
/***/ }),
|
|
51245
51286
|
/* 505 */
|
|
@@ -57695,7 +57736,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
57695
57736
|
"use strict";
|
|
57696
57737
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchListTab_vue__ = __webpack_require__(258);
|
|
57697
57738
|
/* unused harmony namespace reexport */
|
|
57698
|
-
/* harmony import */ var
|
|
57739
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_6854ad22_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchListTab_vue__ = __webpack_require__(656);
|
|
57699
57740
|
function injectStyle (ssrContext) {
|
|
57700
57741
|
__webpack_require__(650)
|
|
57701
57742
|
}
|
|
@@ -57710,12 +57751,12 @@ var __vue_template_functional__ = false
|
|
|
57710
57751
|
/* styles */
|
|
57711
57752
|
var __vue_styles__ = injectStyle
|
|
57712
57753
|
/* scopeId */
|
|
57713
|
-
var __vue_scopeId__ = "data-v-
|
|
57754
|
+
var __vue_scopeId__ = "data-v-6854ad22"
|
|
57714
57755
|
/* moduleIdentifier (server only) */
|
|
57715
57756
|
var __vue_module_identifier__ = null
|
|
57716
57757
|
var Component = normalizeComponent(
|
|
57717
57758
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchListTab_vue__["a" /* default */],
|
|
57718
|
-
|
|
57759
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_6854ad22_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchListTab_vue__["a" /* default */],
|
|
57719
57760
|
__vue_template_functional__,
|
|
57720
57761
|
__vue_styles__,
|
|
57721
57762
|
__vue_scopeId__,
|
|
@@ -57736,7 +57777,7 @@ var content = __webpack_require__(651);
|
|
|
57736
57777
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
57737
57778
|
if(content.locals) module.exports = content.locals;
|
|
57738
57779
|
// add the styles to the DOM
|
|
57739
|
-
var update = __webpack_require__(2)("
|
|
57780
|
+
var update = __webpack_require__(2)("1f17da72", content, true, {});
|
|
57740
57781
|
|
|
57741
57782
|
/***/ }),
|
|
57742
57783
|
/* 651 */
|
|
@@ -57747,7 +57788,7 @@ exports = module.exports = __webpack_require__(1)(false);
|
|
|
57747
57788
|
|
|
57748
57789
|
|
|
57749
57790
|
// module
|
|
57750
|
-
exports.push([module.i, ".sidebar[data-v-
|
|
57791
|
+
exports.push([module.i, ".sidebar[data-v-6854ad22]{z-index:1000;top:-1px;bottom:-1px;padding:0;width:auto;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);-webkit-box-shadow:0 6px 12px rgba(0,0,0,.18);box-shadow:0 6px 12px rgba(0,0,0,.18)}", ""]);
|
|
57751
57792
|
|
|
57752
57793
|
// exports
|
|
57753
57794
|
|
|
@@ -57759,7 +57800,7 @@ exports.push([module.i, ".sidebar[data-v-008c197d]{z-index:1000;top:-1px;bottom:
|
|
|
57759
57800
|
"use strict";
|
|
57760
57801
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchListOne_vue__ = __webpack_require__(259);
|
|
57761
57802
|
/* unused harmony namespace reexport */
|
|
57762
|
-
/* harmony import */ var
|
|
57803
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_d8d4dd3a_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchListOne_vue__ = __webpack_require__(655);
|
|
57763
57804
|
function injectStyle (ssrContext) {
|
|
57764
57805
|
__webpack_require__(653)
|
|
57765
57806
|
}
|
|
@@ -57774,12 +57815,12 @@ var __vue_template_functional__ = false
|
|
|
57774
57815
|
/* styles */
|
|
57775
57816
|
var __vue_styles__ = injectStyle
|
|
57776
57817
|
/* scopeId */
|
|
57777
|
-
var __vue_scopeId__ = "data-v-
|
|
57818
|
+
var __vue_scopeId__ = "data-v-d8d4dd3a"
|
|
57778
57819
|
/* moduleIdentifier (server only) */
|
|
57779
57820
|
var __vue_module_identifier__ = null
|
|
57780
57821
|
var Component = normalizeComponent(
|
|
57781
57822
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchListOne_vue__["a" /* default */],
|
|
57782
|
-
|
|
57823
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_d8d4dd3a_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchListOne_vue__["a" /* default */],
|
|
57783
57824
|
__vue_template_functional__,
|
|
57784
57825
|
__vue_styles__,
|
|
57785
57826
|
__vue_scopeId__,
|
|
@@ -57800,7 +57841,7 @@ var content = __webpack_require__(654);
|
|
|
57800
57841
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
57801
57842
|
if(content.locals) module.exports = content.locals;
|
|
57802
57843
|
// add the styles to the DOM
|
|
57803
|
-
var update = __webpack_require__(2)("
|
|
57844
|
+
var update = __webpack_require__(2)("bd27578a", content, true, {});
|
|
57804
57845
|
|
|
57805
57846
|
/***/ }),
|
|
57806
57847
|
/* 654 */
|
|
@@ -57811,7 +57852,7 @@ exports = module.exports = __webpack_require__(1)(false);
|
|
|
57811
57852
|
|
|
57812
57853
|
|
|
57813
57854
|
// module
|
|
57814
|
-
exports.push([module.i, ".sidebar[data-v-
|
|
57855
|
+
exports.push([module.i, ".sidebar[data-v-d8d4dd3a]{z-index:1000;top:-1px;bottom:-1px;padding:0;width:auto;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);-webkit-box-shadow:0 6px 12px rgba(0,0,0,.18);box-shadow:0 6px 12px rgba(0,0,0,.18)}", ""]);
|
|
57815
57856
|
|
|
57816
57857
|
// exports
|
|
57817
57858
|
|
|
@@ -58538,7 +58579,7 @@ exports.push([module.i, "#app-Tree .el-main{padding:0 0 0 10px}#app-Tree .el-mai
|
|
|
58538
58579
|
"use strict";
|
|
58539
58580
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchTree_vue__ = __webpack_require__(268);
|
|
58540
58581
|
/* unused harmony namespace reexport */
|
|
58541
|
-
/* harmony import */ var
|
|
58582
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_20fff642_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTree_vue__ = __webpack_require__(700);
|
|
58542
58583
|
var normalizeComponent = __webpack_require__(0)
|
|
58543
58584
|
/* script */
|
|
58544
58585
|
|
|
@@ -58555,7 +58596,7 @@ var __vue_scopeId__ = null
|
|
|
58555
58596
|
var __vue_module_identifier__ = null
|
|
58556
58597
|
var Component = normalizeComponent(
|
|
58557
58598
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchTree_vue__["a" /* default */],
|
|
58558
|
-
|
|
58599
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_20fff642_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTree_vue__["a" /* default */],
|
|
58559
58600
|
__vue_template_functional__,
|
|
58560
58601
|
__vue_styles__,
|
|
58561
58602
|
__vue_scopeId__,
|