centaline-data-driven 1.2.20 → 1.2.23
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/SearchList.vue +4 -4
- package/src/assets/ck.png +0 -0
- package/src/assets/succe.png +0 -0
- package/src/assets/success.png +0 -0
- package/src/centaline/api/index.js +8 -0
- package/src/centaline/css/common.css +9 -1
- package/src/centaline/css/max.css +1 -0
- package/src/centaline/dynamicDetail/src/dynamicContactList.vue +948 -0
- package/src/centaline/dynamicDetail/src/dynamicPropertyDetailRET.vue +6 -101
- package/src/centaline/dynamicForm/src/dynamicFormListTable.vue +2 -3
- package/src/centaline/dynamicPhotoSelect/src/dynamicPhotoSelect.vue +3 -3
- package/src/centaline/dynamicPhotoSelectList/src/dynamicPhotoSelectList.vue +152 -50
- package/src/centaline/dynamicSearchList/src/dynamicSearchTable.vue +7 -7
- package/src/centaline/dynamicTree/src/dynamicTreeList.vue +1 -1
- package/src/centaline/loader/src/ctl/ContactList.js +31 -0
- package/src/centaline/loader/src/ctl/Detail.js +19 -1
- package/src/centaline/loader/src/ctl/Router.js +4 -0
- package/src/centaline/loader/src/ctl/SearchTable.js +19 -7
- package/src/centaline/loader/src/ctl.js +1 -0
- package/wwwroot/static/centaline/centaline-data-driven.js +3 -3
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
|
@@ -135,52 +135,11 @@
|
|
|
135
135
|
</div>
|
|
136
136
|
</div>
|
|
137
137
|
<div class="open-mero" @click="allInfo=!allInfo">{{allInfo?'收起全部':'查看全部'}}
|
|
138
|
-
<!-- <img src="../../../assets/mero.png" alt="" class="mero" > :class="allInfo?'more-colose':'more-open'" -->
|
|
139
138
|
<i :class="allInfo?'more-colose':'mero-open'"></i>
|
|
140
139
|
</div>
|
|
141
140
|
</div>
|
|
142
141
|
<div class="contacts-info base-box">
|
|
143
|
-
|
|
144
|
-
<div class="contacts-head">
|
|
145
|
-
<div class="title-l">联系人信息</div>
|
|
146
|
-
<button type="button" v-if="!codeOwner" @click="lookOwner" class="el-button contacts-but el-button--info el-button--mini max-info">查看业主</button>
|
|
147
|
-
<div class="contacts-tips" v-else>
|
|
148
|
-
<button class="el-button el-button--primary el-button--mini max-btn-add">新增联系人</button>
|
|
149
|
-
<button class="el-button el-button--primary el-button--mini max-btn-add">通话记录</button>
|
|
150
|
-
<button class="el-button el-button--primary el-button--mini max-btn-add">查看历史号码</button>
|
|
151
|
-
</div>
|
|
152
|
-
|
|
153
|
-
</div>
|
|
154
|
-
<!-- 表格 -->
|
|
155
|
-
<div class="contacts-table" v-show="codeOwner">
|
|
156
|
-
<el-table
|
|
157
|
-
:data="tableData"
|
|
158
|
-
stripe
|
|
159
|
-
fit
|
|
160
|
-
style="width: 100%"
|
|
161
|
-
:header-cell-style="{background:'#f3f3f3',color:'#333333'}">
|
|
162
|
-
<el-table-column
|
|
163
|
-
v-for="(item,index) in columnList"
|
|
164
|
-
:key="index"
|
|
165
|
-
:property="item.prop"
|
|
166
|
-
:label="item.label"
|
|
167
|
-
:min-width="item.width"
|
|
168
|
-
>
|
|
169
|
-
<template slot-scope="scope">
|
|
170
|
-
<span v-if="scope.column.property=='phone'">{{ scope.row.phone }}
|
|
171
|
-
|
|
172
|
-
</span>
|
|
173
|
-
<span v-else-if="scope.column.property=='tel'">
|
|
174
|
-
{{scope.row.tel}}
|
|
175
|
-
|
|
176
|
-
</span>
|
|
177
|
-
<span v-else>
|
|
178
|
-
{{scope.row[scope.column.property]}}
|
|
179
|
-
</span>
|
|
180
|
-
</template>
|
|
181
|
-
</el-table-column>
|
|
182
|
-
</el-table>
|
|
183
|
-
</div>
|
|
142
|
+
<ct-contactList v-if="model.contactApiRouter!==null" :apiRouter="model.contactApiRouter" ></ct-contactList>
|
|
184
143
|
</div>
|
|
185
144
|
<div class="tablist-info base-box">
|
|
186
145
|
<div class="details-tabs-box">
|
|
@@ -346,11 +305,13 @@
|
|
|
346
305
|
<script>
|
|
347
306
|
import dynamicElement from '../../mixins/dynamicElement';
|
|
348
307
|
import dynamicSearchList from '../../dynamicSearchList/src/dynamicSearchList.vue';
|
|
308
|
+
import dynamicContactList from './dynamicContactList.vue';
|
|
349
309
|
export default {
|
|
350
310
|
name: 'ct-PropertyDetailRET',
|
|
351
311
|
mixins: [dynamicElement],
|
|
352
312
|
components: {
|
|
353
313
|
'ct-searchlist': dynamicSearchList,
|
|
314
|
+
'ct-contactList': dynamicContactList,
|
|
354
315
|
},
|
|
355
316
|
props: {
|
|
356
317
|
vmodel: Object,
|
|
@@ -365,66 +326,10 @@
|
|
|
365
326
|
{ name: '餐厅', url: 'http://10.5.10.44:13031/Images/20210705/112124_4f83c6d5-36bd-444f-9ea1-fa4e3f4de5e0.jpg?width=140&height=135&mode=stretch', isVr: false, type: 'img' },
|
|
366
327
|
{ name: '户型图', url: 'http://10.5.10.44:13031/Images/20210705/112505_6a3cb2d4-c773-4aba-91af-df6721eadb34.jpg?width=140&height=135&mode=stretch', isVr: false, type: 'video' },
|
|
367
328
|
{ name: '其它', url: 'http://10.5.10.44:13031/Images/20210705/112133_b62d7a78-96b3-4801-b94c-47b83263a001.jpg?width=140&height=135&mode=stretch', isVr: false, type: 'video' },
|
|
368
|
-
|
|
369
|
-
allInfo: false,
|
|
370
|
-
allIn:false,
|
|
371
|
-
codeOwner: false,
|
|
372
|
-
columnList: [
|
|
373
|
-
{
|
|
374
|
-
prop: 'name',
|
|
375
|
-
label: '联系人',
|
|
376
|
-
width: '80'
|
|
377
|
-
},
|
|
378
|
-
{
|
|
379
|
-
prop: 'type',
|
|
380
|
-
label: '类型',
|
|
381
|
-
width: '60'
|
|
382
|
-
},
|
|
383
|
-
{
|
|
384
|
-
prop: 'phone',
|
|
385
|
-
label: '手机',
|
|
386
|
-
width: '125'
|
|
329
|
+
],
|
|
387
330
|
},
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
label: '座机',
|
|
391
|
-
width: '170'
|
|
392
|
-
},
|
|
393
|
-
{
|
|
394
|
-
prop: 'wx',
|
|
395
|
-
label: '微信',
|
|
396
|
-
width: '150'
|
|
397
|
-
},
|
|
398
|
-
{
|
|
399
|
-
prop: 'entTime',
|
|
400
|
-
label: '录入时间',
|
|
401
|
-
width: '150'
|
|
402
|
-
},
|
|
403
|
-
{
|
|
404
|
-
prop: 'entUser',
|
|
405
|
-
label: '录入人',
|
|
406
|
-
width: '80'
|
|
407
|
-
},
|
|
408
|
-
{
|
|
409
|
-
prop: 'remarks',
|
|
410
|
-
label: '操作',
|
|
411
|
-
// width:'180'
|
|
412
|
-
},
|
|
413
|
-
],
|
|
414
|
-
tableData: [
|
|
415
|
-
{
|
|
416
|
-
name: '王建国先生',
|
|
417
|
-
type: '业主',
|
|
418
|
-
phone: '13866668888',
|
|
419
|
-
tel: '0275-55556666-5896',
|
|
420
|
-
wx: '555566665896',
|
|
421
|
-
entTime: '2021-10-26 29:27:25',
|
|
422
|
-
entUser: '王天',
|
|
423
|
-
remarks: '删除',
|
|
424
|
-
isIcon: true,
|
|
425
|
-
},
|
|
426
|
-
],
|
|
427
|
-
opening:'first',
|
|
331
|
+
allInfo: false,
|
|
332
|
+
allIn:false,
|
|
428
333
|
}
|
|
429
334
|
},
|
|
430
335
|
mounted() {
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<div class="list-title">
|
|
4
4
|
<h5>{{model.title}}</h5>
|
|
5
5
|
</div>
|
|
6
|
-
<div class="list-button
|
|
7
|
-
<el-button v-if="model.create" type="success" size="mini" icon="el-icon-circle-plus-outline" @click="addRow">
|
|
6
|
+
<div class="list-button">
|
|
7
|
+
<el-button v-if="model.create" type="success" class=" max-btn-add" size="mini" icon="el-icon-circle-plus-outline" @click="addRow">
|
|
8
8
|
新增
|
|
9
9
|
</el-button>
|
|
10
10
|
</div>
|
|
@@ -349,7 +349,6 @@
|
|
|
349
349
|
.ct-form-list .list-button {
|
|
350
350
|
padding-bottom: 5px;
|
|
351
351
|
text-align: right;
|
|
352
|
-
width: 45%;
|
|
353
352
|
display: inline-table;
|
|
354
353
|
float: right;
|
|
355
354
|
}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<div class="cover-list-item">
|
|
15
15
|
<el-image
|
|
16
16
|
fit="fill"
|
|
17
|
-
:src="item.
|
|
17
|
+
:src="item.thumbnailUrl"
|
|
18
18
|
style="width: 100px; height: 100px"
|
|
19
19
|
:z-index="previewZIndex"
|
|
20
20
|
@click="viewerOpen(photoList, index)"
|
|
@@ -138,8 +138,8 @@ export default {
|
|
|
138
138
|
Selected: chooseList,
|
|
139
139
|
// width: self.modelPhotoselect.router.pageWidth + 'px',
|
|
140
140
|
// height: self.modelPhotoselect.router.pageHeight+'px',
|
|
141
|
-
width: "
|
|
142
|
-
height: "
|
|
141
|
+
width: "772px",
|
|
142
|
+
height: "550px",
|
|
143
143
|
para: params,
|
|
144
144
|
},
|
|
145
145
|
on: {
|
|
@@ -1,55 +1,43 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div style="width:100
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
<
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
@click="viewerOpen(imageList,index)"></el-button>
|
|
30
|
-
<el-button icon="el-icon-shopping-cart-2"
|
|
31
|
-
size="mini"
|
|
32
|
-
class="p-2"
|
|
33
|
-
@click="choose(item)"></el-button>
|
|
34
|
-
</el-button-group>
|
|
35
|
-
<span class="badge badge-danger"
|
|
36
|
-
style="position:absolute;right:0;top:0;"
|
|
37
|
-
v-if="item.ischeck"></span>
|
|
38
|
-
<!-- <el-tag type="danger" effect="dark" size="mini" >1</el-tag> -->
|
|
39
|
-
</div>
|
|
40
|
-
</div>
|
|
41
|
-
</el-card>
|
|
42
|
-
</el-col>
|
|
43
|
-
</el-row>
|
|
44
|
-
</el-main>
|
|
2
|
+
<div style=" width: 100%;height: 100%;position: relative;
|
|
3
|
+
" class="ct-photoSelectList" v-if="FlagPhoto">
|
|
4
|
+
<el-main style="position: absolute;
|
|
5
|
+
top: 10px;
|
|
6
|
+
bottom: 70PX;
|
|
7
|
+
left: 10px;
|
|
8
|
+
right: 0;
|
|
9
|
+
padding:0px">
|
|
10
|
+
<ul class="el-upload-list el-upload-list--picture-card">
|
|
11
|
+
<li class="el-upload-list__item is-success" :class="{'border-danger': item.ischeck}"
|
|
12
|
+
v-bind:key="index"
|
|
13
|
+
v-for="(item, index) in imageList">
|
|
14
|
+
<div class="cover-list-item">
|
|
15
|
+
<el-image fit="fill"
|
|
16
|
+
:src="item.thumbnailUrl"
|
|
17
|
+
style="width: 100px; height: 100px"
|
|
18
|
+
:z-index="previewZIndex"
|
|
19
|
+
@click="viewerOpen(imageList, index)">
|
|
20
|
+
</el-image>
|
|
21
|
+
<span class="cover-list-item-span" v-if="item.mediaLabelName">
|
|
22
|
+
<span class="el-dropdown-link">
|
|
23
|
+
{{ item.mediaLabelName }}
|
|
24
|
+
</span>
|
|
25
|
+
</span>
|
|
26
|
+
<div class="p-2 text-center">
|
|
27
|
+
<i class="max-view" @click="viewerOpen(imageList,index)"></i>
|
|
28
|
+
<i class="max-success" @click="choose(item)" :class="{'ischeck': item.ischeck }"></i>
|
|
45
29
|
|
|
30
|
+
<!-- <el-tag type="danger" effect="dark" size="mini" >1</el-tag> -->
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
</li>
|
|
34
|
+
</ul>
|
|
46
35
|
|
|
47
|
-
|
|
48
|
-
<el-col :span="24" :lg="4" :md="6" :sm="8">
|
|
49
|
-
<el-button type="primary" @click="handleClick()">选择</el-button>
|
|
50
|
-
</el-col>
|
|
51
|
-
</el-row>
|
|
36
|
+
</el-main>
|
|
52
37
|
|
|
38
|
+
<div style="width:100%;text-align:center">
|
|
39
|
+
<el-button type="primary" style="position:absolute;bottom:30px;" @click="handleClick()">选择</el-button>
|
|
40
|
+
</div>
|
|
53
41
|
<ct-viewer ref="photoSelectListViewer" />
|
|
54
42
|
|
|
55
43
|
</div>
|
|
@@ -148,7 +136,11 @@
|
|
|
148
136
|
item.ischeck = false;
|
|
149
137
|
},
|
|
150
138
|
handleClick() {
|
|
151
|
-
this
|
|
139
|
+
if (this.chooseList && this.chooseList.length > 0) {
|
|
140
|
+
this.$emit('handlePhoto', this.chooseList);
|
|
141
|
+
} else {
|
|
142
|
+
self.$message.warning("请选择至少一张图片");
|
|
143
|
+
}
|
|
152
144
|
|
|
153
145
|
},
|
|
154
146
|
viewerOpen(list, index) {
|
|
@@ -165,6 +157,116 @@
|
|
|
165
157
|
</script>
|
|
166
158
|
<style>
|
|
167
159
|
.border-danger {
|
|
168
|
-
border: 1px solid red;
|
|
160
|
+
border: 1px solid red !important;
|
|
161
|
+
}
|
|
162
|
+
.ct-photoSelectList .cover-list-item-span {
|
|
163
|
+
position: inherit;
|
|
164
|
+
bottom: 0px;
|
|
165
|
+
display: block;
|
|
166
|
+
background-color: #544f48;
|
|
167
|
+
opacity: 0.8;
|
|
168
|
+
text-align: left
|
|
169
|
+
}
|
|
170
|
+
.ct-photoSelectList .el-dropdown-link {
|
|
171
|
+
color: #fff;
|
|
172
|
+
margin-left:5px
|
|
173
|
+
}
|
|
174
|
+
.text-center {
|
|
175
|
+
position: absolute;
|
|
176
|
+
top: 0;
|
|
177
|
+
right: 5px;
|
|
178
|
+
}
|
|
179
|
+
.max-view {
|
|
180
|
+
background: url(../../../assets/ck.png);
|
|
181
|
+
background-size: 100% 100%;
|
|
182
|
+
width: 24px;
|
|
183
|
+
height: 24px;
|
|
184
|
+
display: inline-block;
|
|
185
|
+
}
|
|
186
|
+
.max-success {
|
|
187
|
+
background: url(../../../assets/succe.png);
|
|
188
|
+
background-size: 100% 100%;
|
|
189
|
+
width: 24px;
|
|
190
|
+
height: 24px;
|
|
191
|
+
display: inline-block;
|
|
192
|
+
}
|
|
193
|
+
.ischeck {
|
|
194
|
+
background: url(../../../assets/success.png);
|
|
195
|
+
background-size: 100% 100%;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
.ct-upload-display-none .el-upload--picture-card {
|
|
200
|
+
display: none;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.el-upload-list__item .is-ready {
|
|
204
|
+
width: 100px;
|
|
205
|
+
height: 100px;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.ct-photoSelectList .cover-list-item {
|
|
209
|
+
position: sticky;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.ct-photoSelectList .cover-list-item-span {
|
|
213
|
+
position: inherit;
|
|
214
|
+
bottom: 0px;
|
|
215
|
+
left: 0px;
|
|
216
|
+
display: block;
|
|
217
|
+
background-color: #544f48;
|
|
218
|
+
opacity: 0.8;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.ct-photoSelectList .cover-list-item-span-delete {
|
|
222
|
+
position: inherit;
|
|
223
|
+
bottom: 160px;
|
|
224
|
+
left: 130px;
|
|
225
|
+
color: #000000;
|
|
226
|
+
text-align: center;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.cover-list-item-span-delete i {
|
|
230
|
+
cursor: pointer;
|
|
231
|
+
vertical-align: sub;
|
|
232
|
+
margin-right: 4px;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.ct-photoSelectList .el-dropdown-link {
|
|
236
|
+
cursor: pointer;
|
|
237
|
+
color: #fff;
|
|
169
238
|
}
|
|
239
|
+
|
|
240
|
+
.ct-photoSelectList .el-icon-arrow-down {
|
|
241
|
+
font-size: 12px;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.el-collapse-item__content {
|
|
245
|
+
padding-bottom: 18px;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.el-upload--picture-card {
|
|
249
|
+
width: 100px;
|
|
250
|
+
height: 100px;
|
|
251
|
+
line-height: initial;
|
|
252
|
+
padding: 34px;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.el-upload--picture-card i {
|
|
256
|
+
font-size: 30px;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.el-upload-list--picture-card .el-upload-list__item {
|
|
260
|
+
width: 100px;
|
|
261
|
+
height: 100px;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.card {
|
|
265
|
+
display: inline-block;
|
|
266
|
+
}
|
|
267
|
+
.ct-photoSelectList .icon{
|
|
268
|
+
cursor: pointer;
|
|
269
|
+
font-size: 20px;
|
|
270
|
+
}
|
|
271
|
+
|
|
170
272
|
</style>
|
|
@@ -719,13 +719,13 @@
|
|
|
719
719
|
},
|
|
720
720
|
on: {
|
|
721
721
|
submit(ev) {
|
|
722
|
-
if (!field.flagFreshCurrentRow) {
|
|
722
|
+
if (!field.flagFreshCurrentRow && !field.flagAddRowAfterAction) {
|
|
723
723
|
self.model.doAction(ev);
|
|
724
724
|
}
|
|
725
725
|
self.$forceUpdate();
|
|
726
726
|
self.$refs.footer.$forceUpdate();
|
|
727
727
|
self.$common.closeDialog(dialogOption.dialog);
|
|
728
|
-
self.updateCurrentRow(field);
|
|
728
|
+
self.updateCurrentRow(field,ev);
|
|
729
729
|
},
|
|
730
730
|
refreshParent() {
|
|
731
731
|
self.getPage(1);
|
|
@@ -790,12 +790,12 @@
|
|
|
790
790
|
self.operationLoading = true;
|
|
791
791
|
field.doAction(submitData, (data) => {
|
|
792
792
|
self.operationLoading = false;
|
|
793
|
-
if (!field.flagFreshCurrentRow) {
|
|
793
|
+
if (!field.flagFreshCurrentRow && !field.flagAddRowAfterAction) {
|
|
794
794
|
self.model.doAction({ responseData: data });
|
|
795
795
|
}
|
|
796
796
|
self.$forceUpdate();
|
|
797
797
|
self.$refs.footer.$forceUpdate();
|
|
798
|
-
self.updateCurrentRow(field);
|
|
798
|
+
self.updateCurrentRow(field,data);
|
|
799
799
|
})
|
|
800
800
|
}
|
|
801
801
|
}
|
|
@@ -865,14 +865,14 @@
|
|
|
865
865
|
//}
|
|
866
866
|
//self.$refs
|
|
867
867
|
},
|
|
868
|
-
updateCurrentRow(router) {
|
|
868
|
+
updateCurrentRow(router,data) {
|
|
869
869
|
let self = this;
|
|
870
|
-
if (router.flagFreshCurrentRow) {
|
|
870
|
+
if (router.flagFreshCurrentRow || router.flagAddRowAfterAction) {
|
|
871
871
|
self.tableComplate = true;
|
|
872
872
|
self.model.getCurrentRowApiData(function () {
|
|
873
873
|
self.$forceUpdate();
|
|
874
874
|
self.tableComplate = false;
|
|
875
|
-
});
|
|
875
|
+
},data,router);
|
|
876
876
|
}
|
|
877
877
|
},
|
|
878
878
|
importComplete(res) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div id="app-Tree" style="height:100%;">
|
|
3
3
|
<el-container style="height: calc(100vh - 98px);border: 1px solid #eee">
|
|
4
|
-
<el-aside :width="leftWidth?leftWidth+'px':'15%'" style="background-color:white">
|
|
4
|
+
<el-aside :width="leftWidth?leftWidth+'px':'15%'" style="background-color:white;border-radius: 6px;">
|
|
5
5
|
<ct-searchtree :flagsearch="true" :searchConditionApi="searchConditionApi" :searchDataApi="searchDataApi" @loaded="loaded"></ct-searchtree>
|
|
6
6
|
</el-aside>
|
|
7
7
|
<el-main v-if="isShowMain">
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import base from '../../index';
|
|
2
|
+
import Base from './Base';
|
|
3
|
+
import Enum from './lib/Enum';
|
|
4
|
+
import common from '../../../common';
|
|
5
|
+
import Router from './Router';
|
|
6
|
+
import Vue from 'vue';
|
|
7
|
+
const ContactList = function (source,para ,callBack) {
|
|
8
|
+
var init = function (data) {
|
|
9
|
+
var rtn = {
|
|
10
|
+
$vue: null,
|
|
11
|
+
|
|
12
|
+
};
|
|
13
|
+
return rtn;
|
|
14
|
+
}
|
|
15
|
+
if (typeof source === 'string') {
|
|
16
|
+
Vue.prototype.$api.postHandler(common.globalUri(), { action: source,para:para}).then(
|
|
17
|
+
function (response) {
|
|
18
|
+
if (response.rtnCode === Enum.ReturnCode.Successful) {
|
|
19
|
+
var rtn = init(response.content);
|
|
20
|
+
if (callBack) {
|
|
21
|
+
callBack(rtn);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
else {
|
|
28
|
+
return init(source);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
export default ContactList;
|
|
@@ -14,6 +14,7 @@ const Detail = function (source,para ,callBack) {
|
|
|
14
14
|
_otherTradeActionRouter: null,//对应另外种交易的 router 如:本盘出售 则可能对应的出租的交易,没有则为空
|
|
15
15
|
_actionRouters:null,//页面上的动作行为
|
|
16
16
|
_actionRoutersMoreList:null,//页面上的更多动作行为
|
|
17
|
+
_contactApiRouter:null,//查看联系人
|
|
17
18
|
detailHeight:750,
|
|
18
19
|
activeIndex1:'0',
|
|
19
20
|
activeIndex2:'0',
|
|
@@ -130,6 +131,20 @@ const Detail = function (source,para ,callBack) {
|
|
|
130
131
|
}
|
|
131
132
|
return rtn._otherTradeActionRouter;
|
|
132
133
|
}
|
|
134
|
+
},
|
|
135
|
+
get contactApiRouter() {
|
|
136
|
+
if (rtn._contactApiRouter !== null) {
|
|
137
|
+
return rtn._contactApiRouter;
|
|
138
|
+
}
|
|
139
|
+
else {
|
|
140
|
+
if (data.contactApiRouter) {
|
|
141
|
+
var router = Router(data.contactApiRouter);
|
|
142
|
+
router.is = "ct-btn";
|
|
143
|
+
router.attrs = { size: "mini" }
|
|
144
|
+
rtn._contactApiRouter=router;
|
|
145
|
+
}
|
|
146
|
+
return rtn._contactApiRouter;
|
|
147
|
+
}
|
|
133
148
|
},
|
|
134
149
|
get actionRouters() {
|
|
135
150
|
if (rtn._actionRouters !== null) {
|
|
@@ -295,7 +310,7 @@ const Detail = function (source,para ,callBack) {
|
|
|
295
310
|
}
|
|
296
311
|
if(field.id=='Follow'
|
|
297
312
|
|| field.id=='Trust' || field.id=='TrustZJJ' || field.id=='TrustDJ' || field.id=='TrustPT'
|
|
298
|
-
|| field.id=='RealLook'
|
|
313
|
+
|| field.id=='RealLook' || field.id=='RealLookVR'
|
|
299
314
|
|| field.id=='StatusAdjust'
|
|
300
315
|
|| field.id=='OperationKey' || field.id=='OperationKeyCommon' || field.id=='OperationKeyPassword'
|
|
301
316
|
|| field.id=='Key'){
|
|
@@ -306,6 +321,9 @@ const Detail = function (source,para ,callBack) {
|
|
|
306
321
|
else if(field.id=='TrustZJJ' || field.id=='TrustDJ' || field.id=='TrustPT'){
|
|
307
322
|
id='Trust';
|
|
308
323
|
}
|
|
324
|
+
else if(field.id=='RealLookVR'){
|
|
325
|
+
id='RealLook';
|
|
326
|
+
}
|
|
309
327
|
var advIndex = rtn.tags1.findIndex((v) => {
|
|
310
328
|
return v.appID === id;
|
|
311
329
|
});
|
|
@@ -183,6 +183,10 @@ const Router = function (source) {
|
|
|
183
183
|
get flagFreshCurrentRow() {
|
|
184
184
|
return source.flagFreshCurrentRow;
|
|
185
185
|
},
|
|
186
|
+
//路由操作完成后是根据返回ID读取数据新增行
|
|
187
|
+
get flagAddRowAfterAction() {
|
|
188
|
+
return source.flagAddRowAfterAction;
|
|
189
|
+
},
|
|
186
190
|
get textColor() {
|
|
187
191
|
return source.textColor || '';
|
|
188
192
|
},
|
|
@@ -554,7 +554,7 @@ const SearchTable = function (data, callBack, searchModel, flagSearch, defaultSe
|
|
|
554
554
|
console.error(error);
|
|
555
555
|
});
|
|
556
556
|
},
|
|
557
|
-
getCurrentRowApiData(callback) {
|
|
557
|
+
getCurrentRowApiData(callback,rtnData,router) {
|
|
558
558
|
var self = this;
|
|
559
559
|
var searchFields = this.searchModel ? this.searchModel.searchData : { fields: [] };
|
|
560
560
|
if (self.primaryKey) {
|
|
@@ -563,7 +563,7 @@ const SearchTable = function (data, callBack, searchModel, flagSearch, defaultSe
|
|
|
563
563
|
groupName: self.primaryKey,
|
|
564
564
|
operation: 2,
|
|
565
565
|
searchDataType: 3,
|
|
566
|
-
searchValue1: rtn.listData[rtn.selectIndex][self.primaryKey],
|
|
566
|
+
searchValue1: router.flagAddRowAfterAction? rtnData.responseData.content: rtn.listData[rtn.selectIndex][self.primaryKey],
|
|
567
567
|
});
|
|
568
568
|
}
|
|
569
569
|
Vue.prototype.$api.postHandler(common.globalUri(), {
|
|
@@ -577,11 +577,23 @@ const SearchTable = function (data, callBack, searchModel, flagSearch, defaultSe
|
|
|
577
577
|
.then(function (response) {
|
|
578
578
|
if (response.rtnCode === Enum.ReturnCode.Successful) {
|
|
579
579
|
if (response.content.rows.length > 0) {
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
580
|
+
if(router.flagAddRowAfterAction){
|
|
581
|
+
rtn.setStyleRow(response.content.rows);
|
|
582
|
+
response.content.rows.forEach((nr) => {
|
|
583
|
+
rtn.listData.unshift(nr);
|
|
584
|
+
});
|
|
585
|
+
rtn.dataDictionary = response.content.rows;
|
|
586
|
+
|
|
587
|
+
source.page.rows = source.page.rows + response.content.rows.length;
|
|
588
|
+
rtn.$vue.calculatingRowHeight()
|
|
589
|
+
}
|
|
590
|
+
else{
|
|
591
|
+
response.content.rows.forEach((row) => {
|
|
592
|
+
for (var vkey in row) {
|
|
593
|
+
rtn.dataDictionary[row[rtn.primaryKey]][vkey] = row[vkey];
|
|
594
|
+
}
|
|
595
|
+
});
|
|
596
|
+
}
|
|
585
597
|
}
|
|
586
598
|
|
|
587
599
|
if (typeof response.content.foot !== 'undefined') {
|
|
@@ -36,6 +36,7 @@ const loader = {
|
|
|
36
36
|
PhotoSelect: require("./ctl/PhotoSelect.js").default,
|
|
37
37
|
PhotoSelectList: require("./ctl/PhotoSelectList.js").default,
|
|
38
38
|
QuickInputSos: require("./ctl/QuickInputSos.js").default,
|
|
39
|
+
ContactList: require("./ctl/ContactList.js").default,
|
|
39
40
|
};
|
|
40
41
|
|
|
41
42
|
export default loader;
|