centaline-data-driven 1.4.93 → 1.4.94
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/src/assets/B1.png +0 -0
- package/src/assets/T1.png +0 -0
- package/src/assets/more1.png +0 -0
- package/src/centaline/css/common.css +46 -29
- package/src/centaline/css/max.css +60 -42
- package/src/centaline/dynamicComboBoxWithTextBox/src/dynamicComboBoxWithTextBox.vue +1 -1
- package/src/centaline/dynamicDetail/src/dynamicContactList.vue +15 -16
- package/src/centaline/dynamicDetail/src/dynamicPropertyDetailOFI.vue +38 -35
- package/src/centaline/dynamicDetail/src/dynamicPropertyDetailRET.vue +40 -36
- package/src/centaline/dynamicDetail/src/dynamicPropertySimpleDetailRET.vue +652 -602
- package/src/centaline/dynamicFile/src/dynamicFile.vue +2 -2
- package/src/centaline/dynamicIti/src/dynamicIti.vue +1 -1
- package/src/centaline/dynamicLayout/src/dynamicLayoutLabel.vue +1 -1
- package/src/centaline/dynamicMo/src/dynamicMo.vue +3 -3
- package/src/centaline/dynamicSearchList/src/dynamicSearchCategory.vue +12 -6
- package/src/centaline/dynamicSearchList/src/dynamicSearchTable.vue +3 -2
- package/src/centaline/dynamicSearchList/src/dynamicTableStats.vue +6 -6
- package/src/centaline/dynamicSearchList/src/dynamicTableTip.vue +1 -1
- package/src/centaline/dynamicSearchListTab/src/dynamicSearchListOne.vue +372 -0
- package/src/centaline/dynamicSearchListTab/src/dynamicSearchListTab.vue +36 -249
- package/src/centaline/dynamicSo/src/dynamicSo.vue +4 -4
- package/src/centaline/dynamicT/src/dynamicT.vue +1 -1
- package/src/centaline/dynamicTags/src/dynamicTags.vue +3 -3
- package/src/centaline/dynamicTree/src/dynamicTree.vue +1 -1
- package/src/centaline/loader/src/ctl/lib/LibFunction.js +1 -1
- package/src/centaline/quickInput/src/quickInput.vue +1 -1
- package/src/centaline/quickInputSos/src/quickInput.vue +1 -1
- package/src/centaline/selectOption/src/selectOptionVertical.vue +1 -1
- package/src/centaline/templateControls/src/dynamicTableCurrency.vue +1 -1
- package/src/main.js +3 -3
- package/wwwroot/static/centaline/centaline-data-driven.js +3 -3
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
|
@@ -4,30 +4,13 @@
|
|
|
4
4
|
<div slot="header" class="clearfix" v-if="typeof title !== 'undefined' && showTitle">
|
|
5
5
|
<span style="font-weight:bold">{{title}}</span>
|
|
6
6
|
</div>
|
|
7
|
-
<el-tabs v-if="categorySource" :value="activeIndex" @tab-click="handleClick">
|
|
7
|
+
<el-tabs v-if="categorySource" :value="activeIndex" @tab-click="handleClick" class="searchlistTab">
|
|
8
8
|
<el-tab-pane v-for="(col, index) in categorySource.selectItems1" :key="col.code"
|
|
9
9
|
:index="index.toString()" :name="index.toString()" :label="col.name">
|
|
10
10
|
<div>
|
|
11
|
-
<ct-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
@showTitle="showTitleScreenHandler"></ct-searchscreen>
|
|
15
|
-
|
|
16
|
-
<ct-searchtable :ref="'table'+activeIndex" :api="searchDataApi" :searchStatsApi="searchStatsApi" :from="from" :isIframe="isIframe" :documentHeight="documentHeight"
|
|
17
|
-
@loaded="tableLoaded" :documentWidth="documentWidth" :flagPopupSearchlist="flagPopupSearchlist" :screenTop="screenTop" :flagAppMode="flagAppMode"
|
|
18
|
-
@toolbarClick="toolbarClickHandler" @refreshParent="refreshParentHandler" :key="reloadKeyTable" @searchComplate="searchComplate"
|
|
19
|
-
@rowClickHandle="rowClickHandle" @scrollHandle="scrollHandle" @refreshRowHandle="refreshRowHandle" @doClosePopoverHandle="doClosePopoverHandle"
|
|
20
|
-
@showTitle="showTitleHandler" @popupClickHandler="popupClickHandler"></ct-searchtable>
|
|
21
|
-
</div>
|
|
22
|
-
<div :ref="'sidebar'+activeIndex" v-if="flagSideBar && flagSideBarOfData"
|
|
23
|
-
:style="{'height': pageHeight? pageHeight:'100%','width':sideBarWidth+'px',right:sideBarRight+'px'}"
|
|
24
|
-
class="sidebar">
|
|
25
|
-
<ct-Detail :ref="'detail'+activeIndex" :api="sideBarApi" :apiParam="sideBarApiParam" :pageType="sideBarPageType"
|
|
26
|
-
:selectIndex="selectIndex" :rowCount="rowCount" :key="detailKey" :drowerClose="drowerClose"
|
|
27
|
-
@clickNextHandler="clickNextHandler" @clickPrevHandler="clickPrevHandler" @simpleRouterclickHandler="simpleRouterclickHandler"
|
|
28
|
-
@closeSideHandler="closeSideHandler"></ct-Detail>
|
|
29
|
-
<ct-SearchSideMenu ref="sideMenu" :sideBarMenuRight="sideBarMenuRight" :sideBarStatus="sideBarStatus"
|
|
30
|
-
@sideMenuClickHandler="sideMenuClickHandler"></ct-SearchSideMenu>
|
|
11
|
+
<ct-searchlistOne :ref="'searchlist'+index" :searchConditionApi="searchConditionApi" :pageHeight="listHeight"
|
|
12
|
+
:searchStatsApi="searchStatsApi" :searchDataApi="searchDataApi" :apiParam="apiParam" @tableLoaded="tableLoaded">
|
|
13
|
+
</ct-searchlistOne>
|
|
31
14
|
</div>
|
|
32
15
|
</el-tab-pane>
|
|
33
16
|
</el-tabs>
|
|
@@ -36,19 +19,12 @@
|
|
|
36
19
|
</template>
|
|
37
20
|
<script>
|
|
38
21
|
import dynamicElement from '../../mixins/dynamicElement';
|
|
39
|
-
import
|
|
40
|
-
import dynamicSearchTable from '../../dynamicSearchList/src/dynamicSearchTable.vue';
|
|
41
|
-
import dynamicSearchSideMenu from '../../dynamicSearchList/src/dynamicSearchSideMenu.vue';
|
|
42
|
-
import progress from '../../progress/src/progress.vue';
|
|
22
|
+
import dynamicSearchListOne from './dynamicSearchListOne.vue';
|
|
43
23
|
export default {
|
|
44
24
|
name: 'ct-searchlistTab',
|
|
45
25
|
mixins: [dynamicElement],
|
|
46
26
|
components: {
|
|
47
|
-
'ct-
|
|
48
|
-
'ct-searchtable': dynamicSearchTable,
|
|
49
|
-
'ct-progress': progress,
|
|
50
|
-
'ct-SearchSideMenu': dynamicSearchSideMenu,
|
|
51
|
-
'ct-Detail': ()=>import('../../dynamicDetail/src/dynamicDetail.vue'),
|
|
27
|
+
'ct-searchlistOne': dynamicSearchListOne,
|
|
52
28
|
},
|
|
53
29
|
props: {
|
|
54
30
|
vmodel: Object,
|
|
@@ -82,13 +58,9 @@
|
|
|
82
58
|
created() {
|
|
83
59
|
this.model = this.vmodel;
|
|
84
60
|
this.screenPara=this.apiParam;
|
|
85
|
-
if(this.searchCategoryApi){
|
|
86
|
-
this.loaded.categoryLoaded=false;
|
|
87
|
-
}
|
|
88
61
|
if(this.apiParam && this.apiParam.isIframe && this.apiParam.isIframe=='true'){
|
|
89
62
|
this.isIframe=true;
|
|
90
63
|
}
|
|
91
|
-
this.categoryLoad();
|
|
92
64
|
},
|
|
93
65
|
activated() {
|
|
94
66
|
this.$nextTick(() => {
|
|
@@ -101,46 +73,24 @@
|
|
|
101
73
|
},
|
|
102
74
|
data() {
|
|
103
75
|
return {
|
|
104
|
-
loaded: {
|
|
105
|
-
screenLoaded: false,
|
|
106
|
-
tableLoaded: false,
|
|
107
|
-
categoryLoaded: true,
|
|
108
|
-
},
|
|
109
76
|
title:'',
|
|
110
77
|
showTitle:false,
|
|
111
78
|
screenPara:null,
|
|
112
79
|
screenTop:0,
|
|
113
|
-
reloadKey:0,
|
|
114
|
-
reloadKeyScreen:'s0',
|
|
115
|
-
reloadKeyTable:'t0',
|
|
116
|
-
isReload:false,
|
|
117
80
|
pageDisabled:false,
|
|
118
81
|
drowerClose:'',
|
|
119
82
|
activeIndex:0,
|
|
120
83
|
categorySource:null,
|
|
121
|
-
|
|
122
|
-
flagSideBar:false,
|
|
123
|
-
flagSideBarOfData:true,
|
|
124
|
-
flagDefaultDisplaySideBar:false,
|
|
125
|
-
sideBarWidth:0,
|
|
126
|
-
searchWidth:0,
|
|
127
|
-
sideBarRight:0,
|
|
128
|
-
sideBarMenuRight:0,
|
|
129
|
-
sideBarStatus:'',
|
|
130
|
-
sideBarApi:'',
|
|
131
|
-
sideBarApiParam:null,
|
|
132
|
-
sideBarPageType:'',
|
|
133
|
-
selectIndex:-1,
|
|
134
|
-
rowCount:0,
|
|
135
|
-
detailKey:0,
|
|
136
84
|
isIframe: false,
|
|
85
|
+
searchWidth:0,
|
|
86
|
+
listHeight:'',
|
|
137
87
|
}
|
|
138
88
|
},
|
|
139
89
|
computed: {
|
|
140
90
|
},
|
|
141
91
|
mounted(){
|
|
142
92
|
this.$nextTick(function () {
|
|
143
|
-
|
|
93
|
+
this.categoryLoad();
|
|
144
94
|
});
|
|
145
95
|
},
|
|
146
96
|
methods: {
|
|
@@ -151,9 +101,11 @@
|
|
|
151
101
|
if (response.rtnCode === 200) {
|
|
152
102
|
self.categorySource=response.content.fields[0];
|
|
153
103
|
console.log(self.categorySource)
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
104
|
+
let parm={};
|
|
105
|
+
parm[self.categorySource.fieldName1]=self.categorySource.selectItems1[self.activeIndex].code;
|
|
106
|
+
self.$nextTick(function () {
|
|
107
|
+
self.categoryLoaded(parm);
|
|
108
|
+
});
|
|
157
109
|
}
|
|
158
110
|
else{
|
|
159
111
|
self.categoryLoadedError();
|
|
@@ -163,214 +115,49 @@
|
|
|
163
115
|
},
|
|
164
116
|
handleClick(tab, event) {
|
|
165
117
|
let i = tab.index;
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
this.screenTop=this.$refs['screen'+this.activeIndex].$el.offsetTop;
|
|
174
|
-
}
|
|
175
|
-
this.$refs['table'+this.activeIndex].searchComplate(this.$refs['screen'+this.activeIndex].model, defaultSearch);
|
|
176
|
-
|
|
177
|
-
this.$emit('loaded', this.$refs['screen'+this.activeIndex].model);
|
|
118
|
+
let parm={};
|
|
119
|
+
parm[this.categorySource.fieldName1]=this.categorySource.selectItems1[i].code;
|
|
120
|
+
this.$nextTick(function () {
|
|
121
|
+
if(!this.$refs['searchlist'+i][0].loaded.categoryTabLoaded){
|
|
122
|
+
this.$refs['searchlist'+i][0].categoryLoaded(parm);
|
|
123
|
+
}
|
|
124
|
+
});
|
|
178
125
|
},
|
|
179
126
|
categoryLoaded(param) {
|
|
180
|
-
this.
|
|
181
|
-
|
|
182
|
-
console.log(this.$refs['screen'+this.activeIndex])
|
|
183
|
-
this.$refs['screen'+this.activeIndex].searchComplate();
|
|
127
|
+
this.listHeight=(this.$refs.main.offsetHeight-40)+'px';
|
|
128
|
+
this.$refs['searchlist'+this.activeIndex][0].categoryLoaded(param);
|
|
184
129
|
},
|
|
185
130
|
categoryLoadedError() {
|
|
186
|
-
this.$refs['
|
|
187
|
-
this.$refs['table'+this.activeIndex].isLoading=false;
|
|
188
|
-
},
|
|
189
|
-
categorychange(param) {
|
|
190
|
-
if(param)this.screenPara=param;
|
|
191
|
-
this.reloadKey = this.reloadKey+1;
|
|
192
|
-
this.reloadKeyScreen='s'+this.reloadKey;
|
|
193
|
-
this.reloadKeyTable='t'+this.reloadKey;
|
|
194
|
-
},
|
|
195
|
-
search() {
|
|
196
|
-
this.selectIndex=-1;
|
|
197
|
-
if (this.$refs['table'+this.activeIndex].model) {
|
|
198
|
-
this.pageDisabled=true;
|
|
199
|
-
this.$refs['table'+this.activeIndex].getPage(1);
|
|
200
|
-
}
|
|
201
|
-
else {
|
|
202
|
-
this.$refs['table'+this.activeIndex].searchComplate(this.$refs['screen'+this.activeIndex].model,this.$refs['screen'+this.activeIndex].model.defaultSearch);
|
|
203
|
-
}
|
|
204
|
-
},
|
|
205
|
-
searchComplate(index) {
|
|
206
|
-
this.pageDisabled=false;
|
|
207
|
-
if(this.flagSideBar && this.$refs['table'+this.activeIndex].model.listData.length>0){
|
|
208
|
-
if(!this.flagSideBarOfData || index===1){
|
|
209
|
-
this.flagSideBarOfData=true;
|
|
210
|
-
this.sideMenuClickHandler(this.sideBarStatus =='close'?'open':'close');
|
|
211
|
-
}
|
|
212
|
-
}
|
|
213
|
-
else{
|
|
214
|
-
this.flagSideBarOfData=false;
|
|
215
|
-
this.searchWidth=0;
|
|
216
|
-
}
|
|
131
|
+
this.$refs['searchlist'+this.activeIndex][0].categoryLoadedError();
|
|
217
132
|
},
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
this.$refs['screen'+this.activeIndex].model.export(field, submitData);
|
|
221
|
-
}
|
|
222
|
-
else if (field.isRefreshParent) {
|
|
223
|
-
this.isRefreshParent();
|
|
224
|
-
}
|
|
133
|
+
tableLoaded(){
|
|
134
|
+
this.iisLoading=false;
|
|
225
135
|
},
|
|
226
136
|
refreshParentHandler() {
|
|
227
137
|
this.$emit('refreshParent');
|
|
228
138
|
},
|
|
229
139
|
resize() {
|
|
230
|
-
if(this.$refs['
|
|
231
|
-
this.$refs['
|
|
232
|
-
}
|
|
233
|
-
},
|
|
234
|
-
resizeSearchList() {
|
|
235
|
-
if(this.flagSideBar && this.flagSideBarOfData){
|
|
236
|
-
if(this.sideBarStatus=='open' && this.$refs.main){
|
|
237
|
-
this.searchWidth=this.$refs.main.clientWidth-this.sideBarWidth;
|
|
238
|
-
}
|
|
140
|
+
if(this.$refs['searchlist'+this.activeIndex][0]){
|
|
141
|
+
this.$refs['searchlist'+this.activeIndex][0].resize();
|
|
239
142
|
}
|
|
240
143
|
},
|
|
241
144
|
showTitleHandler() {
|
|
242
|
-
if (this.$refs['table'+this.activeIndex].model && this.$refs['table'+this.activeIndex].model.flagShowTitle) {
|
|
243
|
-
this.title=this.$refs['table'+this.activeIndex].model.title;
|
|
244
|
-
this.showTitle=this.$refs['table'+this.activeIndex].model.flagShowTitle;
|
|
145
|
+
if (this.$refs['table'+this.activeIndex][0].model && this.$refs['table'+this.activeIndex][0].model.flagShowTitle) {
|
|
146
|
+
this.title=this.$refs['table'+this.activeIndex][0].model.title;
|
|
147
|
+
this.showTitle=this.$refs['table'+this.activeIndex][0].model.flagShowTitle;
|
|
245
148
|
}
|
|
246
149
|
},
|
|
247
150
|
showTitleScreenHandler() {
|
|
248
|
-
if (this.$refs['screen'+this.activeIndex].model && this.$refs['screen'+this.activeIndex].model.flagShowTitle) {
|
|
249
|
-
this.title=this.$refs['screen'+this.activeIndex].model.title;
|
|
250
|
-
this.showTitle=this.$refs['screen'+this.activeIndex].model.flagShowTitle;
|
|
251
|
-
}
|
|
252
|
-
},
|
|
253
|
-
tableLoaded() {
|
|
254
|
-
var self = this;
|
|
255
|
-
if (typeof this.$refs['table'+this.activeIndex].model.cellLayout !== "undefined") {
|
|
256
|
-
this.$refs['screen'+this.activeIndex].LoadLayout();
|
|
257
|
-
}
|
|
258
|
-
if(this.$refs['table'+this.activeIndex].model.listData.length>0){
|
|
259
|
-
this.flagSideBarOfData=true;
|
|
260
|
-
this.flagSideBar=this.$refs['table'+this.activeIndex].model.flagSideBar;
|
|
261
|
-
this.flagDefaultDisplaySideBar=this.$refs['table'+this.activeIndex].model.flagDefaultDisplaySideBar;
|
|
262
|
-
|
|
263
|
-
if(this.$refs['table'+this.activeIndex].model.rowSelectRouter){
|
|
264
|
-
this.sideBarApi=this.$refs['table'+this.activeIndex].model.rowSelectRouter.action;
|
|
265
|
-
this.sideBarPageType=this.$refs['table'+this.activeIndex].model.rowSelectRouter.actionSource;
|
|
266
|
-
}
|
|
267
|
-
else{
|
|
268
|
-
this.flagSideBar=false;
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
if(document.body.clientWidth && document.body.clientWidth<1024){
|
|
272
|
-
this.flagSideBar=false;
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
if(this.flagSideBar){
|
|
276
|
-
this.selectIndex=-1;
|
|
277
|
-
if(this.flagDefaultDisplaySideBar && !this.sideBarStatus){
|
|
278
|
-
this.sideMenuClickHandler('close');
|
|
279
|
-
}
|
|
280
|
-
else{
|
|
281
|
-
let status='open';
|
|
282
|
-
if(this.sideBarStatus=='open')status='close';
|
|
283
|
-
else if(this.sideBarStatus=='close')status='open';
|
|
284
|
-
this.sideMenuClickHandler(status);
|
|
285
|
-
}
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
window.addEventListener("resize", (ev) => {
|
|
289
|
-
self.resizeSearchList();
|
|
290
|
-
});
|
|
291
|
-
}
|
|
292
|
-
else{
|
|
293
|
-
this.flagSideBarOfData=false;
|
|
294
|
-
this.searchWidth=0;
|
|
295
|
-
}
|
|
296
|
-
this.$emit('tableLoaded', this.$refs['table'+this.activeIndex].model);
|
|
297
|
-
},
|
|
298
|
-
rowClickHandle() {
|
|
299
|
-
var self = this;
|
|
300
|
-
if(self.selectIndex!==self.$refs.table.model.selectIndex && self.$refs.table.model.rowSelectRouter){
|
|
301
|
-
self.selectIndex=self.$refs.table.model.selectIndex;
|
|
302
|
-
self.rowCount=self.$refs.table.model.listData.length;
|
|
303
|
-
self.sideBarApiParam = {};
|
|
304
|
-
if(self.$refs.table.model.rowSelectRouter.submitListField){
|
|
305
|
-
self.$refs.table.model.rowSelectRouter.submitListField.forEach((k) => {
|
|
306
|
-
self.sideBarApiParam[k] = self.$refs.table.model.listData[self.selectIndex][k];
|
|
307
|
-
});
|
|
308
|
-
}
|
|
309
|
-
self.sideBarApiParam.actionType = self.$refs.table.model.rowSelectRouter.actionType;
|
|
310
|
-
self.detailKey = self.detailKey+1;
|
|
311
|
-
}
|
|
312
|
-
},
|
|
313
|
-
refreshRowHandle(){
|
|
314
|
-
this.selectIndex=-1;
|
|
315
|
-
this.rowClickHandle();
|
|
316
|
-
},
|
|
317
|
-
sideMenuClickHandler(v) {
|
|
318
|
-
this.drowerClose = v;
|
|
319
|
-
let popoverCallTels=document.getElementsByClassName('el-popoverCallTel');
|
|
320
|
-
if(v=='open'){
|
|
321
|
-
this.sideBarStatus ='close';
|
|
322
|
-
this.sideBarRight=-this.sideBarWidth;
|
|
323
|
-
this.sideBarWidth=0;
|
|
324
|
-
this.searchWidth=0;
|
|
325
|
-
this.sideBarMenuRight=0;
|
|
326
|
-
for(var i=0;i<popoverCallTels.length;i++){
|
|
327
|
-
popoverCallTels[i].style.display='none';
|
|
328
|
-
}
|
|
329
|
-
}
|
|
330
|
-
else if(v=='close'){
|
|
331
|
-
this.sideBarStatus ='open';
|
|
332
|
-
this.sideBarRight=0;
|
|
333
|
-
this.sideBarWidth=this.$refs['table'+this.activeIndex].model.sideBarWidth;
|
|
334
|
-
this.searchWidth=this.$refs.main.clientWidth-this.sideBarWidth;
|
|
335
|
-
this.sideBarMenuRight=this.sideBarWidth-2;
|
|
336
|
-
this.rowClickHandle();
|
|
337
|
-
for(var i=0;i<popoverCallTels.length;i++){
|
|
338
|
-
popoverCallTels[i].style.display='block';
|
|
339
|
-
}
|
|
340
|
-
if(this.$refs.detail){
|
|
341
|
-
if(this.$refs.detail.$children && this.$refs.detail.$children.length>0){
|
|
342
|
-
this.$refs.detail.$children[0].refreshPage();
|
|
343
|
-
}
|
|
344
|
-
}
|
|
151
|
+
if (this.$refs['screen'+this.activeIndex][0].model && this.$refs['screen'+this.activeIndex][0].model.flagShowTitle) {
|
|
152
|
+
this.title=this.$refs['screen'+this.activeIndex][0].model.title;
|
|
153
|
+
this.showTitle=this.$refs['screen'+this.activeIndex][0].model.flagShowTitle;
|
|
345
154
|
}
|
|
346
|
-
this.$refs['table'+this.activeIndex].setTableHeight();
|
|
347
|
-
},
|
|
348
|
-
closeSideHandler() {
|
|
349
|
-
this.$refs.sideMenu.clickHandler();
|
|
350
155
|
},
|
|
351
156
|
clickNextHandler() {
|
|
352
|
-
this.$refs['table'+this.activeIndex].rowKeyDownHandle(null,1);
|
|
157
|
+
this.$refs['table'+this.activeIndex][0].rowKeyDownHandle(null,1);
|
|
353
158
|
},
|
|
354
159
|
clickPrevHandler() {
|
|
355
|
-
this.$refs['table'+this.activeIndex].rowKeyDownHandle(null,-1);
|
|
356
|
-
},
|
|
357
|
-
simpleRouterclickHandler(field,data) {
|
|
358
|
-
this.$refs['table'+this.activeIndex].refreshFromSimple(field,data);
|
|
359
|
-
this.selectIndex=-1;
|
|
360
|
-
this.rowClickHandle();
|
|
361
|
-
},
|
|
362
|
-
saveShortcut(){
|
|
363
|
-
this.$refs['table'+this.activeIndex].getPage(1);
|
|
364
|
-
},
|
|
365
|
-
scrollHandle(scrollTop,scrollLeft){
|
|
366
|
-
this.$emit('scrollHandle',scrollTop,scrollLeft)
|
|
367
|
-
},
|
|
368
|
-
doClosePopoverHandle(){
|
|
369
|
-
this.$refs['screen'+this.activeIndex].$refs.doClosePopover.click();
|
|
370
|
-
},
|
|
371
|
-
popupClickHandler(tempListData){
|
|
372
|
-
this.$emit('submit', tempListData);
|
|
373
|
-
this.$common.closeDialog(this);
|
|
160
|
+
this.$refs['table'+this.activeIndex][0].rowKeyDownHandle(null,-1);
|
|
374
161
|
},
|
|
375
162
|
},
|
|
376
163
|
beforeDestroy() {
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
background-color: #fff;
|
|
258
258
|
background-image: none;
|
|
259
259
|
border-radius: 4px;
|
|
260
|
-
border: 1px solid #
|
|
260
|
+
border: 1px solid #C6C6C6;
|
|
261
261
|
-webkit-box-sizing: border-box;
|
|
262
262
|
box-sizing: border-box;
|
|
263
263
|
color: #606266;
|
|
@@ -291,11 +291,11 @@
|
|
|
291
291
|
}
|
|
292
292
|
|
|
293
293
|
.ct-so.isfocus .ct-input_inner:hover {
|
|
294
|
-
border-color:
|
|
294
|
+
border-color: var(--centalineBlue); /*border-color:#c0c4cc*/
|
|
295
295
|
}
|
|
296
296
|
|
|
297
297
|
.ct-so.isfocus .ct-input_inner {
|
|
298
|
-
border-color:
|
|
298
|
+
border-color: var(--centalineBlue);
|
|
299
299
|
}
|
|
300
300
|
|
|
301
301
|
.ct-so .el-input__suffix {
|
|
@@ -304,7 +304,7 @@
|
|
|
304
304
|
}
|
|
305
305
|
|
|
306
306
|
.ct-so .el-select__caret {
|
|
307
|
-
color: #
|
|
307
|
+
color: #BBBBBB;
|
|
308
308
|
font-size: inherit;
|
|
309
309
|
-webkit-transition: -webkit-transform .3s;
|
|
310
310
|
transition: -webkit-transform .3s;
|
|
@@ -397,11 +397,11 @@
|
|
|
397
397
|
}
|
|
398
398
|
|
|
399
399
|
.ct-tags.isfocus .ct-input_inner:hover {
|
|
400
|
-
border-color:
|
|
400
|
+
border-color: var(--centalineBlue); /*border-color:#c0c4cc*/
|
|
401
401
|
}
|
|
402
402
|
|
|
403
403
|
.ct-tags.isfocus .ct-input_inner {
|
|
404
|
-
border-color:
|
|
404
|
+
border-color: var(--centalineBlue);
|
|
405
405
|
}
|
|
406
406
|
|
|
407
407
|
.ct-tags .el-input__suffix {
|
|
@@ -410,7 +410,7 @@
|
|
|
410
410
|
}
|
|
411
411
|
|
|
412
412
|
.ct-tags .el-select__caret {
|
|
413
|
-
color: #
|
|
413
|
+
color: #BBBBBB;
|
|
414
414
|
font-size: inherit;
|
|
415
415
|
-webkit-transition: -webkit-transform .3s;
|
|
416
416
|
transition: -webkit-transform .3s;
|
|
@@ -280,7 +280,7 @@ const LibFunction = {
|
|
|
280
280
|
item = Button(field);
|
|
281
281
|
item.is = 'ct-btn';
|
|
282
282
|
item.action = 'showHigh';
|
|
283
|
-
item.attrs.class = item.attrs.class + ' max-
|
|
283
|
+
item.attrs.class = item.attrs.class + ' max-more-btn ';
|
|
284
284
|
item.icon = 'max-open';
|
|
285
285
|
break;
|
|
286
286
|
case Enum.ControlType.ButtonReset: //重置查询按钮
|
package/src/main.js
CHANGED
|
@@ -14,9 +14,9 @@ Vue.use(ElementUI, { size: 'mini'});
|
|
|
14
14
|
// 关闭生产模式下给出的提示
|
|
15
15
|
Vue.config.productionTip = false;
|
|
16
16
|
Vue.use(centaline, {
|
|
17
|
-
|
|
17
|
+
baseUrl: "http://10.88.22.46:7070/max-uplink-api/v1/form/router",
|
|
18
18
|
// baseUrl: "http://10.6.1.162:17070/max-uplink-api/v1/form/router",
|
|
19
|
-
baseUrl: "http://10.25.10.67:9999/service-api/v1/form/router",
|
|
19
|
+
// baseUrl: "http://10.25.10.67:9999/service-api/v1/form/router",
|
|
20
20
|
// baseUrl: "http://10.88.22.42:9999/v1/form/router",
|
|
21
21
|
// baseUrl: "http://10.88.22.69:8080/api/",
|
|
22
22
|
// baseUrl: "http://10.88.22.40:8080/api/",
|
|
@@ -50,7 +50,7 @@ Vue.use(centaline, {
|
|
|
50
50
|
getRequestHeaders: function () {
|
|
51
51
|
return {
|
|
52
52
|
oldToken: '0bbcf3e8-cf7e-42de-adef-af54e2158fe4',
|
|
53
|
-
token:'aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.
|
|
53
|
+
token:'aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEjjsOwjAQBe_iOivZ2fVunC7xp-EQkSGOFCpEEgmEuDsgoKNnildMM--mlm2vWoUsrotswFtqgNhYcJQSeM3sMGnEEAb3AX7Ml4HEu66LAqR7Bko2gqt9AnS2DxQ7CZFVpcrlpFrDTW1qEYuVmvP6FpoMvsS2lPOuXP9x7rjOz-yUM-WxTCDUEBDxBJmYYETtBPUBpWR1fwAAAP__.nDlevz6dgoon0m0QNTtCCdty2vcy7c1FCRaTG8AyUGU',
|
|
54
54
|
|
|
55
55
|
originalRequestURL: 'http://10.88.22.67:8080',
|
|
56
56
|
EstateInfo: '{"estateId":"201703020943128D8A8FCF463E4016D6","estateName":"%E4%B8%87%E7%A7%91%E4%BA%91%E5%9F%8E"}',
|