centaline-data-driven 1.2.99 → 1.3.2
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 -2
- package/src/SearchList.vue +5 -4
- package/src/centaline/browseIframe/index.js +11 -0
- package/src/centaline/browseIframe/src/browseIframe.vue +48 -0
- package/src/centaline/dialogList/src/dialog.vue +17 -9
- package/src/centaline/dynamicDetail/src/dynamicAlbums.vue +197 -0
- package/src/centaline/dynamicDetail/src/dynamicDetail.vue +3 -2
- package/src/centaline/dynamicDetail/src/dynamicPropertyDetailOFI.vue +5 -50
- package/src/centaline/dynamicDetail/src/dynamicPropertyDetailRET.vue +1508 -1169
- package/src/centaline/dynamicFile/src/dynamicFile.vue +3 -3
- package/src/centaline/dynamicSearchList/src/dynamicSearchList.vue +4 -1
- package/src/centaline/dynamicSearchList/src/dynamicSearchScreen.vue +3 -4
- package/src/centaline/dynamicSearchList/src/dynamicSearchTable.vue +49 -0
- package/src/centaline/dynamicViewerFile/src/dynamicViewerFile.vue +123 -26
- package/src/centaline/dynamicViewerFile/src/dynamicViewerPDF.vue +25 -41
- package/src/centaline/loader/src/ctl/Detail.js +5 -0
- package/src/centaline/loader/src/ctl/Router.js +3 -0
- package/src/centaline/loader/src/ctl/SearchScreen.js +0 -1
- package/src/centaline/loader/src/ctl/lib/Enum.js +6 -1
- package/src/centaline/templateControls/src/dynamicTableCurrency.vue +27 -7
- package/src/main.js +1 -1
- package/wwwroot/static/centaline/centaline-data-driven.js +3 -9
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
|
@@ -1,578 +1,894 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
2
|
+
<div ref="main" class="main" v-if="model !== null">
|
|
3
|
+
<div class="details-content">
|
|
4
|
+
<div ref="header" class="details-head base-box mb10">
|
|
5
|
+
<div class="head-type">{{ model.fields1Dic.Trade.value }}</div>
|
|
6
|
+
<div class="head-info">
|
|
7
|
+
<div class="title">
|
|
8
|
+
<span>{{ model.fields1Dic.StatusName.value }}</span>
|
|
9
|
+
<span class="head-line"></span>
|
|
10
|
+
<span>{{ model.fields1Dic.EstateName.value }}</span>
|
|
11
|
+
<span> {{ model.fields1Dic.BuildingName.value }}</span>
|
|
12
|
+
<span>{{ model.fields1Dic.RoomNo.value }}</span>
|
|
13
|
+
<img
|
|
14
|
+
:src="model.fields1Dic.FavoriteUrl.value"
|
|
15
|
+
alt=""
|
|
16
|
+
class="collection"
|
|
17
|
+
/>
|
|
18
|
+
</div>
|
|
19
|
+
<div class="title-other">
|
|
20
|
+
<span
|
|
21
|
+
>{{ model.fields1Dic.PropertyNo.label
|
|
22
|
+
}}{{ model.fields1Dic.PropertyNo.value }}</span
|
|
23
|
+
>
|
|
24
|
+
<span
|
|
25
|
+
>{{ model.fields1Dic.GovNo.label
|
|
26
|
+
}}{{ model.fields1Dic.GovNo.value }}</span
|
|
27
|
+
>
|
|
28
|
+
<span class="mr10">{{
|
|
29
|
+
model.fields1Dic["DistrictName"].value +
|
|
30
|
+
model.fields1Dic.AreaName.value
|
|
31
|
+
}}</span>
|
|
32
|
+
<img
|
|
33
|
+
:src="model.fields1Dic.LocationUrl.value"
|
|
34
|
+
alt=""
|
|
35
|
+
class="location"
|
|
36
|
+
/>
|
|
37
|
+
</div>
|
|
38
|
+
<div class="title-tags">
|
|
39
|
+
<div
|
|
40
|
+
class="t-tag"
|
|
41
|
+
v-for="(tag, index) in model.actionRouterLabel"
|
|
42
|
+
:key="index"
|
|
43
|
+
:style="{
|
|
44
|
+
color: tag.textColor,
|
|
45
|
+
backgroundColor: tag.bgColor,
|
|
46
|
+
borderColor: tag.borderColor,
|
|
47
|
+
}"
|
|
48
|
+
>
|
|
49
|
+
{{ tag.label }}
|
|
50
|
+
</div>
|
|
51
|
+
</div>
|
|
52
|
+
<div
|
|
53
|
+
v-if="model.fields1Dic.PropertyDepict"
|
|
54
|
+
v-html="model.fields1Dic.PropertyDepict.value"
|
|
55
|
+
style="
|
|
56
|
+
font-weight: bold;
|
|
57
|
+
font-size: 13px;
|
|
58
|
+
margin-top: 10px;
|
|
59
|
+
background: rgb(236, 249, 255);
|
|
60
|
+
flex: 1;
|
|
61
|
+
align-items: center;
|
|
62
|
+
padding: 5px;
|
|
63
|
+
border-radius: 5px;
|
|
64
|
+
"
|
|
65
|
+
></div>
|
|
66
|
+
</div>
|
|
67
|
+
<div class="head-but">
|
|
68
|
+
<div>
|
|
69
|
+
<component
|
|
70
|
+
v-if="model.otherTradeActionRouter !== null"
|
|
71
|
+
v-bind="model.otherTradeActionRouter"
|
|
72
|
+
class="max-default w93"
|
|
73
|
+
:is="model.otherTradeActionRouter.is"
|
|
74
|
+
:vmodel="model.otherTradeActionRouter"
|
|
75
|
+
:api="model.optionApi"
|
|
76
|
+
@click="fieldClickHandler(model.otherTradeActionRouter, $event)"
|
|
77
|
+
></component>
|
|
78
|
+
<img
|
|
79
|
+
v-if="parentModel && parentModel.$refs && parentModel.$refs.table"
|
|
80
|
+
:class="{
|
|
81
|
+
domDisabled:
|
|
82
|
+
parentModel &&
|
|
83
|
+
parentModel.$refs.table &&
|
|
84
|
+
parentModel.$refs.table.model.selectIndex <= 0,
|
|
85
|
+
}"
|
|
86
|
+
@click="clickPrevHandler"
|
|
87
|
+
src="../../../assets/T.png"
|
|
88
|
+
alt=""
|
|
89
|
+
style="
|
|
90
|
+
width: 26px;
|
|
91
|
+
height: 26px;
|
|
92
|
+
vertical-align: bottom;
|
|
93
|
+
margin-left: 20px;
|
|
94
|
+
cursor: pointer;
|
|
95
|
+
"
|
|
96
|
+
/>
|
|
97
|
+
<img
|
|
98
|
+
v-if="parentModel && parentModel.$refs && parentModel.$refs.table"
|
|
99
|
+
:class="{
|
|
100
|
+
domDisabled:
|
|
101
|
+
parentModel &&
|
|
102
|
+
parentModel.$refs.table &&
|
|
103
|
+
parentModel.$refs.table.model.listData &&
|
|
104
|
+
parentModel.$refs.table.model.selectIndex ===
|
|
105
|
+
parentModel.$refs.table.model.listData.length - 1,
|
|
106
|
+
}"
|
|
107
|
+
@click="clickNextHandler"
|
|
108
|
+
src="../../../assets/B.png"
|
|
109
|
+
alt=""
|
|
110
|
+
style="
|
|
111
|
+
width: 26px;
|
|
112
|
+
height: 26px;
|
|
113
|
+
vertical-align: bottom;
|
|
114
|
+
margin-left: 15px;
|
|
115
|
+
margin-right: 13px;
|
|
116
|
+
cursor: pointer;
|
|
117
|
+
"
|
|
118
|
+
/>
|
|
119
|
+
</div>
|
|
120
|
+
<div class="mt5">
|
|
121
|
+
<component
|
|
122
|
+
class="max-report w93"
|
|
123
|
+
v-if="
|
|
124
|
+
model.actionRouters !== null && model.actionRouters[0] !== null
|
|
125
|
+
"
|
|
126
|
+
:is="model.actionRouters[0].is"
|
|
127
|
+
:vmodel="model.actionRouters[0]"
|
|
128
|
+
:api="model.optionApi"
|
|
129
|
+
@click="fieldClickHandler(model.actionRouters[0], $event)"
|
|
130
|
+
></component>
|
|
131
|
+
<component
|
|
132
|
+
class="max-report w93"
|
|
133
|
+
v-if="
|
|
134
|
+
model.actionRouters !== null && model.actionRouters[1] !== null
|
|
135
|
+
"
|
|
136
|
+
:is="model.actionRouters[1].is"
|
|
137
|
+
:vmodel="model.actionRouters[1]"
|
|
138
|
+
:api="model.optionApi"
|
|
139
|
+
@click="fieldClickHandler(model.actionRouters[1], $event)"
|
|
140
|
+
></component>
|
|
141
|
+
</div>
|
|
142
|
+
<div class="mt5">
|
|
143
|
+
<button
|
|
144
|
+
type="button"
|
|
145
|
+
class="
|
|
146
|
+
el-button el-button--info el-button--mini
|
|
147
|
+
max-report
|
|
148
|
+
rel
|
|
149
|
+
w93
|
|
150
|
+
"
|
|
151
|
+
v-if="
|
|
152
|
+
model.actionRoutersMoreList !== null &&
|
|
153
|
+
model.actionRoutersMoreList.length > 0
|
|
154
|
+
"
|
|
155
|
+
>
|
|
156
|
+
<img src="../../../assets/dian.png" alt="" class="report" />
|
|
157
|
+
<ul class="report-cont">
|
|
158
|
+
<li
|
|
159
|
+
v-for="(col, index) in model.actionRoutersMoreList"
|
|
160
|
+
:key="index"
|
|
161
|
+
v-if="col.show !== false"
|
|
162
|
+
>
|
|
163
|
+
<component
|
|
164
|
+
class="max-report w93"
|
|
165
|
+
:is="col.is"
|
|
166
|
+
:vmodel="col"
|
|
167
|
+
:api="model.optionApi"
|
|
168
|
+
@click="fieldClickHandler(col, $event)"
|
|
169
|
+
></component>
|
|
170
|
+
</li>
|
|
171
|
+
</ul>
|
|
172
|
+
</button>
|
|
173
|
+
<component
|
|
174
|
+
v-else-if="
|
|
175
|
+
model.actionRouters !== null && model.actionRouters.length === 3
|
|
176
|
+
"
|
|
177
|
+
class="max-report w93"
|
|
178
|
+
:is="model.actionRouters[2].is"
|
|
179
|
+
:vmodel="model.actionRouters[2]"
|
|
180
|
+
:api="model.optionApi"
|
|
181
|
+
@click="fieldClickHandler(model.actionRouters[2], $event)"
|
|
182
|
+
>
|
|
183
|
+
</component>
|
|
184
|
+
</div>
|
|
185
|
+
</div>
|
|
186
|
+
</div>
|
|
187
|
+
<div
|
|
188
|
+
ref="detail"
|
|
189
|
+
class="details-mid y-auto"
|
|
190
|
+
:style="{
|
|
191
|
+
height: model.detailHeight ? model.detailHeight + 'px' : '780px',
|
|
192
|
+
}"
|
|
193
|
+
>
|
|
194
|
+
<div
|
|
195
|
+
ref="midl"
|
|
196
|
+
class="mid-l"
|
|
197
|
+
:style="{
|
|
198
|
+
width: model.midlWidth ? model.midlWidth + 'px' : '1200px',
|
|
199
|
+
}"
|
|
200
|
+
>
|
|
201
|
+
<!-- 图片内容部分 -->
|
|
202
|
+
<div class="hous-info base-box">
|
|
203
|
+
<div class="info-conten">
|
|
204
|
+
<div class="hous-t">
|
|
205
|
+
<ct-albums
|
|
206
|
+
:mediaAlbums="model.mediaAlbums" :noMediaUrl="model.noMediaUrl"
|
|
207
|
+
:title="model.title"
|
|
208
|
+
>
|
|
209
|
+
</ct-albums>
|
|
210
|
+
</div>
|
|
211
|
+
<div class="hous-b">
|
|
212
|
+
<img
|
|
213
|
+
:src="model.fields1Dic.ewmUrl.value"
|
|
214
|
+
alt=""
|
|
215
|
+
class="code-ewm"
|
|
216
|
+
/>
|
|
217
|
+
<div class="info-row mb20 mt5">
|
|
218
|
+
<div class="row-i">
|
|
219
|
+
<span>{{ model.fields1Dic.Price.label }}</span
|
|
220
|
+
><span
|
|
221
|
+
class="base-clolr expand-f"
|
|
222
|
+
v-html="model.fields1Dic.Price.value"
|
|
223
|
+
></span
|
|
224
|
+
><span class="base-clolr">{{
|
|
225
|
+
model.fields1Dic.Price.unitName
|
|
226
|
+
}}</span>
|
|
227
|
+
<img src="../../../assets/jsq.png" class="img-jsq" alt="" />
|
|
228
|
+
</div>
|
|
229
|
+
<div class="row-i">
|
|
230
|
+
<span>{{ model.fields1Dic.PriceUnit.label }}</span
|
|
231
|
+
><span
|
|
232
|
+
class="base-clolr expand-f"
|
|
233
|
+
v-html="model.fields1Dic.PriceUnit.value"
|
|
234
|
+
></span
|
|
235
|
+
><span class="base-clolr">{{
|
|
236
|
+
model.fields1Dic.PriceUnit.unitName
|
|
237
|
+
}}</span>
|
|
238
|
+
</div>
|
|
239
|
+
<div v-if="model.fields1Dic.PriceLine" class="row-i">
|
|
240
|
+
<span>{{ model.fields1Dic.PriceLine.label }}</span>
|
|
241
|
+
<div>
|
|
242
|
+
{{ model.fields1Dic.PriceLine.value
|
|
243
|
+
}}{{ model.fields1Dic.PriceLine.unitName }}
|
|
244
|
+
</div>
|
|
245
|
+
</div>
|
|
20
246
|
</div>
|
|
21
|
-
<div class="
|
|
22
|
-
<div
|
|
23
|
-
|
|
24
|
-
|
|
247
|
+
<div class="info-row">
|
|
248
|
+
<div v-if="model.fields1Dic.PriceLine" class="row-i">
|
|
249
|
+
<span>{{ model.fields1Dic.MarketRateOfReturn.label }}</span
|
|
250
|
+
><span
|
|
251
|
+
>{{ model.fields1Dic.MarketRateOfReturn.value }} </span
|
|
252
|
+
><span>{{
|
|
253
|
+
model.fields1Dic.MarketRateOfReturn.unitName
|
|
254
|
+
}}</span>
|
|
255
|
+
</div>
|
|
256
|
+
<div v-if="model.fields1Dic.EstimatePriceRent" class="row-i">
|
|
257
|
+
<span>{{ model.fields1Dic.EstimatePriceRent.label }}</span>
|
|
258
|
+
<div>
|
|
259
|
+
{{ model.fields1Dic.EstimatePriceRent.value
|
|
260
|
+
}}<span>{{
|
|
261
|
+
model.fields1Dic.EstimatePriceRent.unitName
|
|
262
|
+
}}</span>
|
|
263
|
+
</div>
|
|
264
|
+
</div>
|
|
265
|
+
<div
|
|
266
|
+
v-if="model.fields1Dic.EstimatePriceRentUnit"
|
|
267
|
+
class="row-i"
|
|
268
|
+
>
|
|
269
|
+
<span>{{
|
|
270
|
+
model.fields1Dic.EstimatePriceRentUnit.label
|
|
271
|
+
}}</span
|
|
272
|
+
><span>{{
|
|
273
|
+
model.fields1Dic.EstimatePriceRentUnit.value
|
|
274
|
+
}}</span
|
|
275
|
+
><span>{{
|
|
276
|
+
model.fields1Dic.EstimatePriceRentUnit.unitName
|
|
277
|
+
}}</span>
|
|
25
278
|
</div>
|
|
26
279
|
</div>
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
280
|
+
|
|
281
|
+
<div class="info-mid">
|
|
282
|
+
<div class="mid-i">
|
|
283
|
+
<div>{{ model.fields1Dic.Area.label }}</div>
|
|
284
|
+
<div>
|
|
285
|
+
{{ model.fields1Dic.Area.value
|
|
286
|
+
}}{{ model.fields1Dic.Area.unitName }}
|
|
287
|
+
</div>
|
|
288
|
+
</div>
|
|
289
|
+
<div class="mid-i">
|
|
290
|
+
<div>{{ model.fields1Dic.AreaNet.label }}</div>
|
|
291
|
+
<div>
|
|
292
|
+
{{ model.fields1Dic.AreaNet.value
|
|
293
|
+
}}{{ model.fields1Dic.AreaNet.unitName }}
|
|
294
|
+
</div>
|
|
295
|
+
</div>
|
|
296
|
+
<div class="mid-i">
|
|
297
|
+
<div>{{ model.fields1Dic.FloorName.label }}</div>
|
|
298
|
+
<div>{{ model.fields1Dic.FloorName.value }}</div>
|
|
299
|
+
</div>
|
|
300
|
+
<div class="mid-i">
|
|
301
|
+
<div>{{ model.fields1Dic.PropertyDirectionID.label }}</div>
|
|
302
|
+
<div>{{ model.fields1Dic.PropertyDirectionID.value }}</div>
|
|
303
|
+
</div>
|
|
30
304
|
</div>
|
|
31
|
-
</div>
|
|
32
|
-
<div class="head-but">
|
|
33
|
-
<div>
|
|
34
|
-
<component v-if="model.otherTradeActionRouter!==null" v-bind="model.otherTradeActionRouter" class="max-default w93"
|
|
35
|
-
:is="model.otherTradeActionRouter.is" :vmodel="model.otherTradeActionRouter" :api="model.optionApi" @click="fieldClickHandler(model.otherTradeActionRouter,$event)"></component>
|
|
36
|
-
<img v-if="parentModel && parentModel.$refs && parentModel.$refs.table"
|
|
37
|
-
:class="{'domDisabled':parentModel && parentModel.$refs.table && parentModel.$refs.table.model.selectIndex<=0}"
|
|
38
|
-
@click="clickPrevHandler" src="../../../assets/T.png" alt="" style="width: 26px;height: 26px;vertical-align: bottom;margin-left: 20px;cursor: pointer">
|
|
39
|
-
<img v-if="parentModel && parentModel.$refs && parentModel.$refs.table"
|
|
40
|
-
:class="{'domDisabled':parentModel && parentModel.$refs.table && parentModel.$refs.table.model.listData && parentModel.$refs.table.model.selectIndex===parentModel.$refs.table.model.listData.length-1}"
|
|
41
|
-
@click="clickNextHandler" src="../../../assets/B.png" alt="" style="width: 26px;height: 26px;vertical-align: bottom;margin-left: 15px;margin-right: 13px;cursor: pointer">
|
|
42
305
|
</div>
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
306
|
+
</div>
|
|
307
|
+
<div
|
|
308
|
+
v-for="(col, index) in collapse"
|
|
309
|
+
:key="index"
|
|
310
|
+
class="info-conten-b"
|
|
311
|
+
v-show="allInfo"
|
|
312
|
+
>
|
|
313
|
+
<div class="info-row mb20">
|
|
314
|
+
<div
|
|
315
|
+
v-for="(c, i) in col"
|
|
316
|
+
:key="i"
|
|
317
|
+
:class="c.singleLine === true ? 'row-i100' : 'row-i'"
|
|
318
|
+
>
|
|
319
|
+
<span>{{ c.label }}</span
|
|
320
|
+
><span>{{ c.value }}</span>
|
|
321
|
+
</div>
|
|
48
322
|
</div>
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
323
|
+
</div>
|
|
324
|
+
<div class="open-mero" @click="allInfo = !allInfo">
|
|
325
|
+
{{ allInfo ? "收起全部" : "查看全部" }}
|
|
326
|
+
<i :class="allInfo ? 'more-colose' : 'mero-open'"></i>
|
|
327
|
+
</div>
|
|
328
|
+
</div>
|
|
329
|
+
<div class="contacts-info base-box">
|
|
330
|
+
<ct-contactList
|
|
331
|
+
v-if="model.contactApiRouter !== null"
|
|
332
|
+
:apiRouter="model.contactApiRouter"
|
|
333
|
+
:key="'contact' + refershKey"
|
|
334
|
+
></ct-contactList>
|
|
335
|
+
</div>
|
|
336
|
+
<div class="tablist-info base-box">
|
|
337
|
+
<div class="details-tabs-box">
|
|
338
|
+
<el-tabs :value="model.activeIndex1" @tab-click="handleSelect">
|
|
339
|
+
<el-tab-pane
|
|
340
|
+
v-for="(col, index) in model.tags1"
|
|
341
|
+
:key="col.appID"
|
|
342
|
+
:index="index.toString()"
|
|
343
|
+
:name="index.toString()"
|
|
344
|
+
>
|
|
345
|
+
<div slot="label" v-html="col.appName"></div>
|
|
346
|
+
</el-tab-pane>
|
|
347
|
+
</el-tabs>
|
|
348
|
+
<ct-searchlist
|
|
349
|
+
v-if="model.searchConditionApiTags1"
|
|
350
|
+
:key="'list' + listKey.toString() + refershKey"
|
|
351
|
+
:apiParam="model.paramDataTags1"
|
|
352
|
+
:flagFocus="false"
|
|
353
|
+
:searchConditionApi="model.searchConditionApiTags1"
|
|
354
|
+
:searchDataApi="model.searchDataApiTags1"
|
|
355
|
+
></ct-searchlist>
|
|
356
|
+
</div>
|
|
357
|
+
</div>
|
|
358
|
+
<div
|
|
359
|
+
class="contribute-info base-box"
|
|
360
|
+
v-if="model._commissionList !== null"
|
|
361
|
+
>
|
|
362
|
+
<div class="title-l">贡献人信息</div>
|
|
363
|
+
<div class="contribute-list">
|
|
364
|
+
<div
|
|
365
|
+
class="contribute-i"
|
|
366
|
+
v-for="(m, index) in model._commissionList"
|
|
367
|
+
:key="index"
|
|
368
|
+
>
|
|
369
|
+
<img :src="m.regEmpImgUrl" alt="图片" />
|
|
370
|
+
<div>
|
|
371
|
+
<div style="display: flex">
|
|
372
|
+
<div class="user-title" v-html="m.empNameCN"></div>
|
|
373
|
+
<div
|
|
374
|
+
class="user-title"
|
|
375
|
+
style="margin-left: 10px"
|
|
376
|
+
v-html="m.commissionPercentDesc"
|
|
377
|
+
></div>
|
|
378
|
+
</div>
|
|
379
|
+
<div class="user-but w56" v-html="m.commissionRoleName"></div>
|
|
380
|
+
</div>
|
|
62
381
|
</div>
|
|
63
382
|
</div>
|
|
383
|
+
</div>
|
|
64
384
|
</div>
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
<div
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
385
|
+
<!-- 右侧委托信息 -->
|
|
386
|
+
<div ref="midr" class="mid-r" style="width: 420px">
|
|
387
|
+
<div class="take-info base-box">
|
|
388
|
+
<div>
|
|
389
|
+
该房源共<span class="red-text">{{
|
|
390
|
+
model.fields1Dic.LookCustomerCount.value
|
|
391
|
+
}}</span
|
|
392
|
+
>位客户看房
|
|
393
|
+
</div>
|
|
394
|
+
<div>
|
|
395
|
+
最近7天带看<span class="red-text">{{
|
|
396
|
+
model.fields1Dic.CustomerLookCount7.value
|
|
397
|
+
}}</span
|
|
398
|
+
>次,总带看<span class="red-text">{{
|
|
399
|
+
model.fields1Dic.CustomerLookCountAll.value
|
|
400
|
+
}}</span
|
|
401
|
+
>次。
|
|
402
|
+
</div>
|
|
403
|
+
</div>
|
|
404
|
+
<div
|
|
405
|
+
v-if="model.operationList !== null"
|
|
406
|
+
:key="model.operationKey"
|
|
407
|
+
class="operation-table base-box"
|
|
408
|
+
>
|
|
409
|
+
<div
|
|
410
|
+
v-for="(col, index) in model.operationList"
|
|
411
|
+
:key="index"
|
|
412
|
+
class="table-box"
|
|
413
|
+
>
|
|
414
|
+
<div class="t-item">
|
|
415
|
+
<span class="i" v-html="col.operationName"></span>
|
|
416
|
+
</div>
|
|
417
|
+
<div class="t-item">
|
|
418
|
+
<span
|
|
419
|
+
class="i"
|
|
420
|
+
:class="'operation' + col.flagKey"
|
|
421
|
+
:style="{ color: col.descColor }"
|
|
422
|
+
>{{ col.desc }}</span
|
|
423
|
+
>
|
|
424
|
+
</div>
|
|
425
|
+
<div class="t-item" style="min-height: 50px">
|
|
426
|
+
<component
|
|
427
|
+
v-for="(router, routerIndex) in col.routers"
|
|
428
|
+
:key="routerIndex"
|
|
429
|
+
:is="router.is"
|
|
430
|
+
:vmodel="router"
|
|
431
|
+
:api="model.optionApi"
|
|
432
|
+
@click="fieldClickHandler(router, $event)"
|
|
433
|
+
class="el-button t-but el-button--info max-info"
|
|
434
|
+
></component>
|
|
435
|
+
</div>
|
|
436
|
+
</div>
|
|
437
|
+
</div>
|
|
438
|
+
<div class="staff-info base-box">
|
|
439
|
+
<el-tabs :value="model.activeIndex2" @tab-click="handleClick">
|
|
440
|
+
<el-tab-pane
|
|
441
|
+
v-for="(col, index) in model.tags2"
|
|
442
|
+
:key="col.appID"
|
|
443
|
+
:index="index.toString()"
|
|
444
|
+
:name="index.toString()"
|
|
445
|
+
:label="col.appName"
|
|
446
|
+
>
|
|
447
|
+
<div v-if="col.appID === 'Maintain'" class="el-tabs__content">
|
|
448
|
+
<div
|
|
449
|
+
v-if="col.list"
|
|
450
|
+
role="tabpanel"
|
|
451
|
+
aria-labelledby="tab-first"
|
|
452
|
+
class="el-tab-pane"
|
|
453
|
+
>
|
|
454
|
+
<div class="tab-conten">
|
|
455
|
+
<img
|
|
456
|
+
:src="col.list[0].maintainEmpUrl"
|
|
457
|
+
alt=""
|
|
458
|
+
class="location"
|
|
459
|
+
/>
|
|
460
|
+
<div class="user-name">
|
|
461
|
+
<div class="text">
|
|
462
|
+
{{ col.list[0].maintainEmpName }}
|
|
109
463
|
</div>
|
|
464
|
+
<span class="user-but">{{
|
|
465
|
+
col.list[0].maintainDeptName
|
|
466
|
+
}}</span>
|
|
110
467
|
</div>
|
|
468
|
+
<div class="text">{{ col.list[0].mobileNo }}</div>
|
|
111
469
|
</div>
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
<img src="
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
<span >{{model.fields1Dic.MarketRateOfReturn.label}}</span><span>{{model.fields1Dic.MarketRateOfReturn.value}} </span><span>{{model.fields1Dic.MarketRateOfReturn.unitName}}</span>
|
|
125
|
-
</div>
|
|
126
|
-
<div v-if="model.fields1Dic.EstimatePriceRent" class="row-i"><span>{{model.fields1Dic.EstimatePriceRent.label}}</span><div>{{model.fields1Dic.EstimatePriceRent.value}}<span>{{model.fields1Dic.EstimatePriceRent.unitName}}</span></div></div>
|
|
127
|
-
<div v-if="model.fields1Dic.EstimatePriceRentUnit" class="row-i"><span>{{model.fields1Dic.EstimatePriceRentUnit.label}}</span><span>{{model.fields1Dic.EstimatePriceRentUnit.value}}</span><span>{{model.fields1Dic.EstimatePriceRentUnit.unitName}}</span></div>
|
|
128
|
-
</div>
|
|
129
|
-
|
|
130
|
-
<div class="info-mid">
|
|
131
|
-
<div class="mid-i">
|
|
132
|
-
<div>{{model.fields1Dic.Area.label}}</div><div>{{model.fields1Dic.Area.value}}{{model.fields1Dic.Area.unitName}}</div></div>
|
|
133
|
-
<div class="mid-i"><div>{{model.fields1Dic.AreaNet.label}}</div><div>{{model.fields1Dic.AreaNet.value}}{{model.fields1Dic.AreaNet.unitName}}</div></div>
|
|
134
|
-
<div class="mid-i"><div>{{model.fields1Dic.FloorName.label}}</div><div>{{model.fields1Dic.FloorName.value}}</div></div>
|
|
135
|
-
<div class="mid-i"><div>{{model.fields1Dic.PropertyDirectionID.label}}</div><div>{{model.fields1Dic.PropertyDirectionID.value}}</div></div>
|
|
470
|
+
<div
|
|
471
|
+
v-show="allIn"
|
|
472
|
+
v-for="(info, i) in col.list.slice(1, col.list.legth)"
|
|
473
|
+
:key="i"
|
|
474
|
+
class="tab-conten"
|
|
475
|
+
>
|
|
476
|
+
<img :src="info.maintainEmpUrl" />
|
|
477
|
+
<div class="user-name">
|
|
478
|
+
<div class="text">{{ info.maintainEmpName }}</div>
|
|
479
|
+
<span class="user-but">{{
|
|
480
|
+
info.maintainDeptName
|
|
481
|
+
}}</span>
|
|
136
482
|
</div>
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
483
|
+
<div class="text">{{ info.mobileNo }}</div>
|
|
484
|
+
</div>
|
|
485
|
+
<div class="open-mero" @click="allIn = !allIn">
|
|
486
|
+
{{ allIn ? "收起全部" : "查看全部" }}
|
|
487
|
+
<!-- <img src="../../../assets/mero.png" alt="" class="mero" > :class="allIn?'more-colose':'more-open'" -->
|
|
488
|
+
<i :class="allIn ? 'more-colose' : 'mero-open'"></i>
|
|
489
|
+
</div>
|
|
142
490
|
</div>
|
|
143
|
-
</div>
|
|
144
|
-
<div class="open-mero" @click="allInfo=!allInfo">{{allInfo?'收起全部':'查看全部'}}
|
|
145
|
-
<i :class="allInfo?'more-colose':'mero-open'"></i>
|
|
146
|
-
</div>
|
|
147
|
-
</div>
|
|
148
|
-
<div class="contacts-info base-box">
|
|
149
|
-
<ct-contactList v-if="model.contactApiRouter!==null" :apiRouter="model.contactApiRouter" :key="'contact'+refershKey" ></ct-contactList>
|
|
150
|
-
</div>
|
|
151
|
-
<div class="tablist-info base-box">
|
|
152
|
-
<div class="details-tabs-box">
|
|
153
|
-
<el-tabs :value="model.activeIndex1" @tab-click="handleSelect">
|
|
154
|
-
<el-tab-pane v-for="(col, index) in model.tags1" :key="col.appID"
|
|
155
|
-
:index="index.toString()" :name="index.toString()">
|
|
156
|
-
<div slot="label" v-html="col.appName"></div>
|
|
157
|
-
</el-tab-pane>
|
|
158
|
-
</el-tabs>
|
|
159
|
-
<ct-searchlist v-if="model.searchConditionApiTags1" :key="'list'+listKey.toString()+refershKey"
|
|
160
|
-
:apiParam="model.paramDataTags1" :flagFocus="false"
|
|
161
|
-
:searchConditionApi="model.searchConditionApiTags1"
|
|
162
|
-
:searchDataApi="model.searchDataApiTags1"></ct-searchlist>
|
|
163
491
|
</div>
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
492
|
+
<div v-else class="el-tabs__content" :key="model.tags2Key">
|
|
493
|
+
<div
|
|
494
|
+
v-if="col.list"
|
|
495
|
+
role="tabpanel"
|
|
496
|
+
aria-labelledby="tab-first"
|
|
497
|
+
class="el-tab-pane"
|
|
498
|
+
>
|
|
499
|
+
<div
|
|
500
|
+
v-for="(info, i) in col.list"
|
|
501
|
+
:key="i"
|
|
502
|
+
class="tab-conten"
|
|
503
|
+
>
|
|
504
|
+
<img :src="info.dutyEmpUrl" />
|
|
505
|
+
<div
|
|
506
|
+
class="user-name"
|
|
507
|
+
style="display: block; padding-top: 5px"
|
|
508
|
+
>
|
|
509
|
+
<div style="display: flex">
|
|
510
|
+
<div class="text">{{ info.dutyEmpName }}</div>
|
|
511
|
+
<span class="user-but">{{ info.dutyDeptName }}</span>
|
|
174
512
|
</div>
|
|
175
|
-
<div class="
|
|
513
|
+
<div class="text">{{ info.mobileNo }}</div>
|
|
176
514
|
</div>
|
|
177
515
|
</div>
|
|
516
|
+
</div>
|
|
178
517
|
</div>
|
|
179
|
-
|
|
518
|
+
</el-tab-pane>
|
|
519
|
+
</el-tabs>
|
|
180
520
|
</div>
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
521
|
+
<div class="customer">
|
|
522
|
+
<div class="customer-title">匹配客户</div>
|
|
523
|
+
<div class="mt10 clearfix">
|
|
524
|
+
<div class="customre-line"></div>
|
|
525
|
+
<div class="match-customre rel">
|
|
526
|
+
<div class="customre-name">崔新河先生</div>
|
|
527
|
+
<div class="t-tag">A级</div>
|
|
528
|
+
<div class="user-but customr-name">私客</div>
|
|
186
529
|
</div>
|
|
187
|
-
<div
|
|
188
|
-
<div
|
|
189
|
-
<div class="
|
|
190
|
-
|
|
530
|
+
<div style="width: 100%">
|
|
531
|
+
<div class="customre-l">
|
|
532
|
+
<div class="row-i"><span>交易:</span><span>求购</span></div>
|
|
533
|
+
<div class="row-i">
|
|
534
|
+
<span>意向物业:</span><span>商铺</span>
|
|
535
|
+
</div>
|
|
536
|
+
<div class="row-i">
|
|
537
|
+
<span>意向售价:</span><span>100.00-150.00</span>
|
|
538
|
+
</div>
|
|
539
|
+
<div class="row-i">
|
|
540
|
+
<span>下次联络:</span><span>2020/11/16 14:30</span>
|
|
541
|
+
</div>
|
|
542
|
+
<div class="row-i">
|
|
543
|
+
<span>租期到期:</span><span>求购</span>
|
|
544
|
+
</div>
|
|
545
|
+
<div class="row-i">
|
|
546
|
+
<span>最后跟进时间:</span><span>2020/11/16 14:30</span>
|
|
547
|
+
</div>
|
|
548
|
+
<div class="row-i">
|
|
549
|
+
<span>最后跟进内容:</span><span>2020/11/16 14:30</span>
|
|
550
|
+
</div>
|
|
551
|
+
<div class="row-i mt10">
|
|
552
|
+
<span>员工:</span><span>中原找房 蔡传兴</span>
|
|
553
|
+
</div>
|
|
554
|
+
<div class="row-i pb10"><span>备注:</span><span></span></div>
|
|
555
|
+
</div>
|
|
556
|
+
<div class="customre-r">
|
|
557
|
+
<div class="row-i"><span>交易:</span><span>预定</span></div>
|
|
558
|
+
<div class="row-i">
|
|
559
|
+
<span>意向面积:</span><span>商铺</span>
|
|
191
560
|
</div>
|
|
192
|
-
<div class="
|
|
193
|
-
|
|
194
|
-
<component v-for="(router, routerIndex) in col.routers" :key="routerIndex" :is="router.is" :vmodel="router" :api="model.optionApi"
|
|
195
|
-
@click="fieldClickHandler(router,$event)" class="el-button t-but el-button--info max-info"></component>
|
|
561
|
+
<div class="row-i">
|
|
562
|
+
<span>意向租价:</span><span>100.00-150.00</span>
|
|
196
563
|
</div>
|
|
197
|
-
|
|
564
|
+
<div class="row-i">
|
|
565
|
+
<span>委托日期:</span><span>2020/11/16 14:30</span>
|
|
566
|
+
</div>
|
|
567
|
+
<div class="row-i">
|
|
568
|
+
<span>推荐项目:</span><span>求购</span>
|
|
569
|
+
</div>
|
|
570
|
+
</div>
|
|
198
571
|
</div>
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
<div class="user-name">
|
|
208
|
-
<div class="text">{{col.list[0].maintainEmpName}}</div><span class="user-but">{{col.list[0].maintainDeptName}}</span>
|
|
209
|
-
</div>
|
|
210
|
-
<div class="text">{{col.list[0].mobileNo}}</div>
|
|
211
|
-
</div>
|
|
212
|
-
<div v-show="allIn" v-for="(info, i) in col.list.slice(1,col.list.legth)" :key="i" class="tab-conten">
|
|
213
|
-
<img :src="info.maintainEmpUrl">
|
|
214
|
-
<div class="user-name">
|
|
215
|
-
<div class="text">{{info.maintainEmpName}}</div><span class="user-but">{{info.maintainDeptName}}</span>
|
|
216
|
-
</div>
|
|
217
|
-
<div class="text">{{info.mobileNo}}</div>
|
|
218
|
-
</div>
|
|
219
|
-
<div class="open-mero" @click="allIn=!allIn">{{allIn?'收起全部':'查看全部'}}
|
|
220
|
-
<!-- <img src="../../../assets/mero.png" alt="" class="mero" > :class="allIn?'more-colose':'more-open'" -->
|
|
221
|
-
<i :class="allIn?'more-colose':'mero-open'"></i>
|
|
222
|
-
</div>
|
|
223
|
-
</div>
|
|
224
|
-
</div>
|
|
225
|
-
<div v-else class="el-tabs__content" :key="model.tags2Key">
|
|
226
|
-
<div v-if="col.list" role="tabpanel" aria-labelledby="tab-first" class="el-tab-pane">
|
|
227
|
-
<div v-for="(info, i) in col.list" :key="i" class="tab-conten">
|
|
228
|
-
<img :src="info.dutyEmpUrl">
|
|
229
|
-
<div class="user-name" style="display: block;padding-top: 5px;">
|
|
230
|
-
<div style="display: flex;">
|
|
231
|
-
<div class="text">{{info.dutyEmpName}}</div>
|
|
232
|
-
<span class="user-but">{{info.dutyDeptName}}</span>
|
|
233
|
-
</div>
|
|
234
|
-
<div class="text">{{info.mobileNo}}</div>
|
|
235
|
-
</div>
|
|
236
|
-
</div>
|
|
237
|
-
</div>
|
|
238
|
-
</div>
|
|
239
|
-
</el-tab-pane>
|
|
240
|
-
</el-tabs>
|
|
572
|
+
</div>
|
|
573
|
+
|
|
574
|
+
<div class="clearfix">
|
|
575
|
+
<div class="customre-line"></div>
|
|
576
|
+
<div class="match-customre rel">
|
|
577
|
+
<div class="customre-name">崔新河先生</div>
|
|
578
|
+
<div class="t-tag">A级</div>
|
|
579
|
+
<div class="user-but customr-name">私客</div>
|
|
241
580
|
</div>
|
|
242
|
-
<div
|
|
243
|
-
|
|
244
|
-
|
|
581
|
+
<div style="width: 100%">
|
|
582
|
+
<div class="customre-l">
|
|
583
|
+
<div class="row-i"><span>交易:</span><span>求购</span></div>
|
|
584
|
+
<div class="row-i">
|
|
585
|
+
<span>意向物业:</span><span>商铺</span>
|
|
245
586
|
</div>
|
|
246
|
-
<div class="
|
|
247
|
-
|
|
248
|
-
<div class="match-customre rel">
|
|
249
|
-
<div class="customre-name">
|
|
250
|
-
崔新河先生
|
|
251
|
-
</div><div class="t-tag">A级</div>
|
|
252
|
-
<div class="user-but customr-name">私客</div>
|
|
587
|
+
<div class="row-i">
|
|
588
|
+
<span>意向售价:</span><span>100.00-150.00</span>
|
|
253
589
|
</div>
|
|
254
|
-
<div
|
|
255
|
-
|
|
256
|
-
<div class="row-i"><span>交易:</span><span>求购</span></div>
|
|
257
|
-
<div class="row-i"><span>意向物业:</span><span>商铺</span></div>
|
|
258
|
-
<div class="row-i"><span>意向售价:</span><span>100.00-150.00</span></div>
|
|
259
|
-
<div class="row-i"><span>下次联络:</span><span>2020/11/16 14:30</span></div>
|
|
260
|
-
<div class="row-i"><span>租期到期:</span><span>求购</span></div>
|
|
261
|
-
<div class="row-i"><span>最后跟进时间:</span><span>2020/11/16 14:30</span></div>
|
|
262
|
-
<div class="row-i"><span>最后跟进内容:</span><span>2020/11/16 14:30</span></div>
|
|
263
|
-
<div class="row-i mt10"><span>员工:</span><span>中原找房 蔡传兴</span></div>
|
|
264
|
-
<div class="row-i pb10"><span>备注:</span><span></span></div>
|
|
265
|
-
</div>
|
|
266
|
-
<div class="customre-r">
|
|
267
|
-
<div class="row-i"><span>交易:</span><span>预定</span></div>
|
|
268
|
-
<div class="row-i"><span>意向面积:</span><span>商铺</span></div>
|
|
269
|
-
<div class="row-i"><span>意向租价:</span><span>100.00-150.00</span></div>
|
|
270
|
-
<div class="row-i"><span>委托日期:</span><span>2020/11/16 14:30</span></div>
|
|
271
|
-
<div class="row-i"><span>推荐项目:</span><span>求购</span></div>
|
|
272
|
-
</div>
|
|
590
|
+
<div class="row-i">
|
|
591
|
+
<span>下次联络:</span><span>2020/11/16 14:30</span>
|
|
273
592
|
</div>
|
|
593
|
+
<div class="row-i">
|
|
594
|
+
<span>租期到期:</span><span>求购</span>
|
|
274
595
|
</div>
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
<div class="customre-line"></div>
|
|
278
|
-
<div class="match-customre rel">
|
|
279
|
-
<div class="customre-name">
|
|
280
|
-
崔新河先生
|
|
281
|
-
</div><div class="t-tag">A级</div>
|
|
282
|
-
<div class="user-but customr-name">私客</div>
|
|
596
|
+
<div class="row-i">
|
|
597
|
+
<span>最后跟进时间:</span><span>2020/11/16 14:30</span>
|
|
283
598
|
</div>
|
|
284
|
-
<div
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
<div class="row-i"><span>下次联络:</span><span>2020/11/16 14:30</span></div>
|
|
290
|
-
<div class="row-i"><span>租期到期:</span><span>求购</span></div>
|
|
291
|
-
<div class="row-i"><span>最后跟进时间:</span><span>2020/11/16 14:30</span></div>
|
|
292
|
-
<div class="row-i"><span>最后跟进内容:</span><span>2020/11/16 14:30</span></div>
|
|
293
|
-
<div class="row-i mt10"><span>员工:</span><span>中原找房 蔡传兴</span></div>
|
|
294
|
-
<div class="row-i"><span>备注:</span><span></span></div>
|
|
295
|
-
</div>
|
|
296
|
-
<div class="customre-r">
|
|
297
|
-
<div class="row-i"><span>交易:</span><span>预定</span></div>
|
|
298
|
-
<div class="row-i"><span>意向面积:</span><span>商铺</span></div>
|
|
299
|
-
<div class="row-i"><span>意向租价:</span><span>100.00-150.00</span></div>
|
|
300
|
-
<div class="row-i"><span>委托日期:</span><span>2020/11/16 14:30</span></div>
|
|
301
|
-
<div class="row-i"><span>推荐项目:</span><span>求购</span></div>
|
|
302
|
-
</div>
|
|
599
|
+
<div class="row-i">
|
|
600
|
+
<span>最后跟进内容:</span><span>2020/11/16 14:30</span>
|
|
601
|
+
</div>
|
|
602
|
+
<div class="row-i mt10">
|
|
603
|
+
<span>员工:</span><span>中原找房 蔡传兴</span>
|
|
303
604
|
</div>
|
|
605
|
+
<div class="row-i"><span>备注:</span><span></span></div>
|
|
606
|
+
</div>
|
|
607
|
+
<div class="customre-r">
|
|
608
|
+
<div class="row-i"><span>交易:</span><span>预定</span></div>
|
|
609
|
+
<div class="row-i">
|
|
610
|
+
<span>意向面积:</span><span>商铺</span>
|
|
611
|
+
</div>
|
|
612
|
+
<div class="row-i">
|
|
613
|
+
<span>意向租价:</span><span>100.00-150.00</span>
|
|
614
|
+
</div>
|
|
615
|
+
<div class="row-i">
|
|
616
|
+
<span>委托日期:</span><span>2020/11/16 14:30</span>
|
|
617
|
+
</div>
|
|
618
|
+
<div class="row-i">
|
|
619
|
+
<span>推荐项目:</span><span>求购</span>
|
|
304
620
|
</div>
|
|
621
|
+
</div>
|
|
305
622
|
</div>
|
|
623
|
+
</div>
|
|
306
624
|
</div>
|
|
307
625
|
</div>
|
|
308
626
|
</div>
|
|
309
627
|
</div>
|
|
628
|
+
</div>
|
|
310
629
|
</template>
|
|
311
630
|
|
|
312
631
|
<script>
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
632
|
+
import dynamicElement from "../../mixins/dynamicElement";
|
|
633
|
+
import dynamicSearchList from "../../dynamicSearchList/src/dynamicSearchList.vue";
|
|
634
|
+
import dynamicContactList from "./dynamicContactList.vue";
|
|
635
|
+
import dynamicAlbums from "./dynamicAlbums.vue";
|
|
636
|
+
export default {
|
|
637
|
+
name: "ct-PropertyDetailRET",
|
|
638
|
+
mixins: [dynamicElement],
|
|
639
|
+
components: {
|
|
640
|
+
"ct-searchlist": dynamicSearchList,
|
|
641
|
+
"ct-contactList": dynamicContactList,
|
|
642
|
+
"ct-albums": dynamicAlbums,
|
|
643
|
+
},
|
|
644
|
+
props: {
|
|
645
|
+
vmodel: Object,
|
|
646
|
+
api: String,
|
|
647
|
+
apiParam: Object,
|
|
648
|
+
parentModel: Object,
|
|
649
|
+
top: {
|
|
650
|
+
type: Number,
|
|
651
|
+
default: 0,
|
|
322
652
|
},
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
refershKey:0,
|
|
342
|
-
listKey:0,
|
|
653
|
+
},
|
|
654
|
+
data() {
|
|
655
|
+
return {
|
|
656
|
+
allInfo: false,
|
|
657
|
+
allIn: false,
|
|
658
|
+
refershKey: 0,
|
|
659
|
+
listKey: 0,
|
|
660
|
+
};
|
|
661
|
+
},
|
|
662
|
+
mounted() {
|
|
663
|
+
var self = this;
|
|
664
|
+
this.$nextTick(function () {
|
|
665
|
+
if (self.vmodel) {
|
|
666
|
+
self.load(self.vmodel);
|
|
667
|
+
} else if (typeof self.source !== "undefined") {
|
|
668
|
+
self.loaderObj.Detail(self.source, null, self.load);
|
|
669
|
+
} else if (typeof self.api !== "undefined") {
|
|
670
|
+
self.loaderObj.Detail(self.api, self.apiParam, self.load);
|
|
343
671
|
}
|
|
344
|
-
}
|
|
345
|
-
|
|
672
|
+
});
|
|
673
|
+
},
|
|
674
|
+
activated() {
|
|
675
|
+
this.$nextTick(() => {
|
|
676
|
+
this.setDetailHeight();
|
|
677
|
+
});
|
|
678
|
+
},
|
|
679
|
+
methods: {
|
|
680
|
+
load(data) {
|
|
346
681
|
var self = this;
|
|
347
|
-
this
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
var self = this;
|
|
367
|
-
this.model = data;
|
|
368
|
-
this.model.$vue = self;
|
|
369
|
-
this.refershKey=this.refershKey+1;
|
|
370
|
-
this.loadFields();
|
|
371
|
-
if(this.model.tags2 && this.model.tags2[0]){
|
|
372
|
-
this.model.getTags2List(0);
|
|
373
|
-
}
|
|
374
|
-
if (typeof window.localStorage !== 'undefined') {
|
|
375
|
-
var tagkey = window.localStorage.getItem('detailtagkey');
|
|
376
|
-
for (var i = 0; i < self.model.tags1.length; i++) {
|
|
377
|
-
if (tagkey == self.model.tags1[i].appID) {
|
|
378
|
-
self.model.activeIndex1 = i.toString();
|
|
379
|
-
if (self.model.tags1 && self.model.tags1[i]) {
|
|
380
|
-
self.listKey = self.listKey + 1;
|
|
381
|
-
self.model.searchConditionApiTags1 = self.model.tags1[i].searchConditionApiUrl || '';
|
|
382
|
-
self.model.searchDataApiTags1 = self.model.tags1[i].searchDataApiUrl || '';
|
|
383
|
-
self.model.paramDataTags1 = self.model.tags1[i].paramData || '';
|
|
384
|
-
}
|
|
682
|
+
this.model = data;
|
|
683
|
+
this.model.$vue = self;
|
|
684
|
+
this.refershKey = this.refershKey + 1;
|
|
685
|
+
this.loadFields();
|
|
686
|
+
if (this.model.tags2 && this.model.tags2[0]) {
|
|
687
|
+
this.model.getTags2List(0);
|
|
688
|
+
}
|
|
689
|
+
if (typeof window.localStorage !== "undefined") {
|
|
690
|
+
var tagkey = window.localStorage.getItem("detailtagkey");
|
|
691
|
+
for (var i = 0; i < self.model.tags1.length; i++) {
|
|
692
|
+
if (tagkey == self.model.tags1[i].appID) {
|
|
693
|
+
self.model.activeIndex1 = i.toString();
|
|
694
|
+
if (self.model.tags1 && self.model.tags1[i]) {
|
|
695
|
+
self.listKey = self.listKey + 1;
|
|
696
|
+
self.model.searchConditionApiTags1 =
|
|
697
|
+
self.model.tags1[i].searchConditionApiUrl || "";
|
|
698
|
+
self.model.searchDataApiTags1 =
|
|
699
|
+
self.model.tags1[i].searchDataApiUrl || "";
|
|
700
|
+
self.model.paramDataTags1 = self.model.tags1[i].paramData || "";
|
|
385
701
|
}
|
|
386
702
|
}
|
|
387
703
|
}
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
704
|
+
}
|
|
705
|
+
this.loadOperation();
|
|
706
|
+
this.loadCommission();
|
|
707
|
+
this.setDetailHeight();
|
|
708
|
+
this.$nextTick(() => {
|
|
709
|
+
window.addEventListener("resize", (ev) => {
|
|
710
|
+
self.setDetailHeight();
|
|
395
711
|
});
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
712
|
+
});
|
|
713
|
+
//通知父组件加载完成
|
|
714
|
+
this.$emit("loaded", this.model);
|
|
715
|
+
},
|
|
716
|
+
loadFields() {
|
|
717
|
+
var self = this;
|
|
718
|
+
self.collapse = [];
|
|
719
|
+
var collapseItemArr = [];
|
|
720
|
+
var col = 0;
|
|
721
|
+
var colCount = 4;
|
|
722
|
+
self.model.fields2Dic.forEach((v, index) => {
|
|
723
|
+
if (v.type === 13) {
|
|
724
|
+
collapseItemArr = [];
|
|
725
|
+
col = 0;
|
|
726
|
+
} else if (v.singleLine) {
|
|
727
|
+
if (collapseItemArr.length > 0) {
|
|
728
|
+
self.collapse.push(collapseItemArr);
|
|
407
729
|
collapseItemArr = [];
|
|
408
|
-
col=0;
|
|
409
730
|
}
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
731
|
+
collapseItemArr.push(v);
|
|
732
|
+
self.collapse.push(collapseItemArr);
|
|
733
|
+
collapseItemArr = [];
|
|
734
|
+
col = 0;
|
|
735
|
+
} else if (v.spanCols) {
|
|
736
|
+
collapseItemArr.push(v);
|
|
737
|
+
col = col + v.spanCols;
|
|
738
|
+
if (col === colCount || index === self.model.fields2Dic.length - 1) {
|
|
416
739
|
self.collapse.push(collapseItemArr);
|
|
417
740
|
collapseItemArr = [];
|
|
418
|
-
col=0;
|
|
419
|
-
}
|
|
420
|
-
else if(v.spanCols){
|
|
421
|
-
collapseItemArr.push(v);
|
|
422
|
-
col=col+v.spanCols;
|
|
423
|
-
if(col===colCount || index===self.model.fields2Dic.length-1){
|
|
424
|
-
self.collapse.push(collapseItemArr);
|
|
425
|
-
collapseItemArr = [];
|
|
426
|
-
col=0;
|
|
427
|
-
}
|
|
741
|
+
col = 0;
|
|
428
742
|
}
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
}
|
|
743
|
+
} else {
|
|
744
|
+
collapseItemArr.push(v);
|
|
745
|
+
col = col + 1;
|
|
746
|
+
if (col === colCount || index === self.model.fields2Dic.length - 1) {
|
|
747
|
+
self.collapse.push(collapseItemArr);
|
|
748
|
+
collapseItemArr = [];
|
|
749
|
+
col = 0;
|
|
437
750
|
}
|
|
438
|
-
});
|
|
439
|
-
},
|
|
440
|
-
loadOperation() {
|
|
441
|
-
this.model._operationList=null;
|
|
442
|
-
this.model._operationRouters=[];
|
|
443
|
-
this.model.getOperationList();
|
|
444
|
-
},
|
|
445
|
-
loadCommission() {
|
|
446
|
-
this.model.getCommissionList();
|
|
447
|
-
},
|
|
448
|
-
lookOwner() {
|
|
449
|
-
this.codeOwner = true
|
|
450
|
-
},
|
|
451
|
-
handleClick(tab, event) {
|
|
452
|
-
let i=tab.index;
|
|
453
|
-
if(this.model.tags2 && this.model.tags2[i]){
|
|
454
|
-
this.model.getTags2List(i);
|
|
455
751
|
}
|
|
456
|
-
}
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
752
|
+
});
|
|
753
|
+
},
|
|
754
|
+
loadOperation() {
|
|
755
|
+
this.model._operationList = null;
|
|
756
|
+
this.model._operationRouters = [];
|
|
757
|
+
this.model.getOperationList();
|
|
758
|
+
},
|
|
759
|
+
loadCommission() {
|
|
760
|
+
this.model.getCommissionList();
|
|
761
|
+
},
|
|
762
|
+
lookOwner() {
|
|
763
|
+
this.codeOwner = true;
|
|
764
|
+
},
|
|
765
|
+
handleClick(tab, event) {
|
|
766
|
+
let i = tab.index;
|
|
767
|
+
if (this.model.tags2 && this.model.tags2[i]) {
|
|
768
|
+
this.model.getTags2List(i);
|
|
769
|
+
}
|
|
770
|
+
},
|
|
771
|
+
setDetailHeight() {
|
|
772
|
+
this.$nextTick(() => {
|
|
773
|
+
if (this.$refs.detail && this.$refs.main) {
|
|
774
|
+
var h1 = document.body.clientHeight | 0;
|
|
775
|
+
var h2 = this.$refs.detail.offsetTop | 0;
|
|
776
|
+
let detailHeight = h1 - h2 - this.top;
|
|
777
|
+
this.model.detailHeight = detailHeight < 40 ? 350 : detailHeight;
|
|
464
778
|
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
779
|
+
var w1 = this.$refs.detail.clientWidth | 0;
|
|
780
|
+
var w2 = this.$refs.midr.clientWidth | 0;
|
|
781
|
+
this.model.midlWidth = w1 - w2 - 10;
|
|
782
|
+
}
|
|
783
|
+
});
|
|
784
|
+
},
|
|
785
|
+
handleSelect(key, keyPath) {
|
|
786
|
+
let i = key.index;
|
|
787
|
+
this.model.activeIndex1 = i;
|
|
788
|
+
if (this.model.tags1 && this.model.tags1[i]) {
|
|
789
|
+
this.listKey = this.listKey + 1;
|
|
790
|
+
this.model.searchConditionApiTags1 =
|
|
791
|
+
this.model.tags1[i].searchConditionApiUrl || "";
|
|
792
|
+
this.model.searchDataApiTags1 =
|
|
793
|
+
this.model.tags1[i].searchDataApiUrl || "";
|
|
794
|
+
this.model.paramDataTags1 = this.model.tags1[i].paramData || "";
|
|
795
|
+
window.localStorage.setItem("detailtagkey", this.model.tags1[i].appID); //存储
|
|
796
|
+
}
|
|
797
|
+
},
|
|
798
|
+
fieldClickHandler(field) {
|
|
799
|
+
var self = this;
|
|
800
|
+
var callBack = null;
|
|
801
|
+
let submitData = {};
|
|
802
|
+
var router = this.model.actionRouters.find((v) => {
|
|
803
|
+
return v.id === field.id;
|
|
804
|
+
});
|
|
805
|
+
if (router == undefined && this.model.actionRoutersMoreList) {
|
|
806
|
+
router = this.model.actionRoutersMoreList.find((v) => {
|
|
807
|
+
return v.id === field.id;
|
|
469
808
|
});
|
|
470
|
-
}
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
if(this.model.tags1 && this.model.tags1[i]){
|
|
475
|
-
this.listKey=this.listKey+1;
|
|
476
|
-
this.model.searchConditionApiTags1=this.model.tags1[i].searchConditionApiUrl||'';
|
|
477
|
-
this.model.searchDataApiTags1=this.model.tags1[i].searchDataApiUrl||'';
|
|
478
|
-
this.model.paramDataTags1 = this.model.tags1[i].paramData || '';
|
|
479
|
-
window.localStorage.setItem("detailtagkey", this.model.tags1[i].appID);//存储
|
|
809
|
+
}
|
|
810
|
+
if (router == undefined && this.model.otherTradeActionRouter) {
|
|
811
|
+
if (field.id === this.model.otherTradeActionRouter.id) {
|
|
812
|
+
router = this.model.otherTradeActionRouter;
|
|
480
813
|
}
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
var callBack=null;
|
|
485
|
-
let submitData={};
|
|
486
|
-
var router = this.model.actionRouters.find((v) => {
|
|
814
|
+
}
|
|
815
|
+
if (router == undefined && this.model.operationRouters) {
|
|
816
|
+
router = this.model.operationRouters.find((v) => {
|
|
487
817
|
return v.id === field.id;
|
|
488
818
|
});
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
819
|
+
callBack = "loadOperation";
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
if (router) {
|
|
823
|
+
if (field.isSubmitDataFromSelf) {
|
|
824
|
+
router.submitFormField.forEach((v) => {
|
|
825
|
+
submitData[v] = field.list[field.listIndex].code;
|
|
826
|
+
});
|
|
827
|
+
} else {
|
|
828
|
+
router.submitFormField.forEach((v) => {
|
|
829
|
+
submitData[v] = self.model.fields1Dic[v].value;
|
|
492
830
|
});
|
|
493
831
|
}
|
|
494
|
-
|
|
495
|
-
if(field.id===this.model.otherTradeActionRouter.id){
|
|
496
|
-
router = this.model.otherTradeActionRouter
|
|
497
|
-
}
|
|
498
|
-
}
|
|
499
|
-
if(router==undefined && this.model.operationRouters){
|
|
500
|
-
router = this.model.operationRouters.find((v) => {
|
|
501
|
-
return v.id === field.id;
|
|
502
|
-
});
|
|
503
|
-
callBack="loadOperation";
|
|
504
|
-
}
|
|
832
|
+
}
|
|
505
833
|
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
}
|
|
517
|
-
}
|
|
834
|
+
if (callBack && callBack == "loadOperation") {
|
|
835
|
+
this.routerClickHandler(router, submitData, self.loadOperation);
|
|
836
|
+
} else {
|
|
837
|
+
this.routerClickHandler(router, submitData);
|
|
838
|
+
}
|
|
839
|
+
},
|
|
840
|
+
routerClickHandler(field, submitData, callBack) {
|
|
841
|
+
var self = this;
|
|
842
|
+
// this.model.scripts.$fd = field.id;
|
|
843
|
+
// this.model.scripts.$result = [];
|
|
518
844
|
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
if (!field.isClientFuntion) {
|
|
534
|
-
// if (typeof field.onClick !== 'undefined') {
|
|
535
|
-
// verified = self.$common.excute.call(self.model.scripts, field.onClick);
|
|
536
|
-
// }
|
|
537
|
-
|
|
538
|
-
if (field.isOpenForm) {
|
|
539
|
-
var dialogOption = {
|
|
540
|
-
title: field.pageTitle,
|
|
541
|
-
pane: self.$common.getParentPane(self),
|
|
542
|
-
content: [{
|
|
543
|
-
component: 'ct-form',
|
|
845
|
+
var clickAcion = function (field) {
|
|
846
|
+
//若不是客户端方法,则直接访问接口
|
|
847
|
+
if (!field.isClientFuntion) {
|
|
848
|
+
// if (typeof field.onClick !== 'undefined') {
|
|
849
|
+
// verified = self.$common.excute.call(self.model.scripts, field.onClick);
|
|
850
|
+
// }
|
|
851
|
+
|
|
852
|
+
if (field.isOpenForm) {
|
|
853
|
+
var dialogOption = {
|
|
854
|
+
title: field.pageTitle,
|
|
855
|
+
pane: self.$common.getParentPane(self),
|
|
856
|
+
content: [
|
|
857
|
+
{
|
|
858
|
+
component: "ct-form",
|
|
544
859
|
attrs: {
|
|
545
860
|
api: field.action,
|
|
546
861
|
apiParam: field.getActionPara(submitData).para,
|
|
547
862
|
showTitle: false,
|
|
548
|
-
width: field.dialogWidth +
|
|
549
|
-
height: field.dialogHeight +
|
|
863
|
+
width: field.dialogWidth + "px",
|
|
864
|
+
height: field.dialogHeight + "px",
|
|
550
865
|
},
|
|
551
866
|
on: {
|
|
552
867
|
submit(ev) {
|
|
553
|
-
self.model.doAction(ev,field);
|
|
554
|
-
if(callBack){
|
|
868
|
+
self.model.doAction(ev, field);
|
|
869
|
+
if (callBack) {
|
|
555
870
|
callBack();
|
|
556
871
|
}
|
|
557
872
|
self.$common.closeDialog(dialogOption.dialog);
|
|
558
|
-
}
|
|
559
|
-
}
|
|
560
|
-
}
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
873
|
+
},
|
|
874
|
+
},
|
|
875
|
+
},
|
|
876
|
+
],
|
|
877
|
+
};
|
|
878
|
+
self.$common.openDialog(dialogOption);
|
|
879
|
+
} else if (field.isOpenList) {
|
|
880
|
+
var dialogOption = {
|
|
881
|
+
title: field.pageTitle,
|
|
882
|
+
pane: self.$common.getParentPane(self),
|
|
883
|
+
content: [
|
|
884
|
+
{
|
|
885
|
+
component: "ct-searchlist",
|
|
570
886
|
attrs: {
|
|
571
887
|
searchConditionApi: field.actionForSearchLayout,
|
|
572
888
|
searchDataApi: field.actionForSearch,
|
|
573
889
|
apiParam: submitData,
|
|
574
|
-
width: field.dialogWidth +
|
|
575
|
-
height: field.dialogHeight +
|
|
890
|
+
width: field.dialogWidth + "px",
|
|
891
|
+
height: field.dialogHeight + "px",
|
|
576
892
|
},
|
|
577
893
|
on: {
|
|
578
894
|
submit(ev) {
|
|
@@ -582,807 +898,830 @@
|
|
|
582
898
|
});
|
|
583
899
|
});
|
|
584
900
|
self.$common.closeDialog(dialogOption.dialog);
|
|
585
|
-
}
|
|
586
|
-
}
|
|
587
|
-
}
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
field.doAction(submitData, (data) => {
|
|
612
|
-
self.model.doAction(data,field);
|
|
613
|
-
if(callBack){
|
|
614
|
-
callBack();
|
|
615
|
-
}
|
|
616
|
-
})
|
|
617
|
-
}
|
|
618
|
-
}
|
|
619
|
-
//执行客户端脚本
|
|
620
|
-
else {
|
|
901
|
+
},
|
|
902
|
+
},
|
|
903
|
+
},
|
|
904
|
+
],
|
|
905
|
+
};
|
|
906
|
+
self.$common.openDialog(dialogOption);
|
|
907
|
+
} else if (field.isFormPageInTab) {
|
|
908
|
+
// 外部框架tab页打开
|
|
909
|
+
submitData = field.getActionPara(submitData).para;
|
|
910
|
+
self.$common
|
|
911
|
+
.getDataDrivenOpts()
|
|
912
|
+
.handler.openTab(
|
|
913
|
+
field.action,
|
|
914
|
+
submitData,
|
|
915
|
+
field.pageTitle,
|
|
916
|
+
self.model,
|
|
917
|
+
field.dialogWidth
|
|
918
|
+
);
|
|
919
|
+
} else if (field.isSearchPageInTab) {
|
|
920
|
+
// 外部框架tab页打开
|
|
921
|
+
submitData = field.getActionPara(submitData).para;
|
|
922
|
+
self.$common
|
|
923
|
+
.getDataDrivenOpts()
|
|
924
|
+
.handler.openTabSearch(field, submitData);
|
|
925
|
+
} else if (field.isBrowserNewTab) {
|
|
926
|
+
// 浏览器打开
|
|
621
927
|
submitData = field.getActionPara(submitData).para;
|
|
622
|
-
let
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
928
|
+
let query = self.$common.objectToQueryStr(submitData);
|
|
929
|
+
window.open(field.action + query, "_blank");
|
|
930
|
+
} else if (field.isOpenUrlInBrowse) {
|
|
931
|
+
// 浏览器打开
|
|
932
|
+
window.open(submitData[field.submitFormField], "_blank");
|
|
933
|
+
} else if (field.isSeeVoice) {
|
|
934
|
+
//看视频
|
|
935
|
+
self.$common.browseVideo(field, submitData);
|
|
936
|
+
} else {
|
|
937
|
+
field.doAction(submitData, (data) => {
|
|
938
|
+
self.model.doAction(data, field);
|
|
939
|
+
if (callBack) {
|
|
940
|
+
callBack();
|
|
941
|
+
}
|
|
942
|
+
});
|
|
626
943
|
}
|
|
627
944
|
}
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
945
|
+
//执行客户端脚本
|
|
946
|
+
else {
|
|
947
|
+
submitData = field.getActionPara(submitData).para;
|
|
948
|
+
let title =
|
|
949
|
+
field.pageTitle == undefined ? field.label : field.pageTitle;
|
|
950
|
+
submitData.actionType = field.actionType;
|
|
951
|
+
var fun = self.$common.getDataDrivenOpts().handler[field.action];
|
|
952
|
+
fun(submitData, title, null);
|
|
631
953
|
}
|
|
954
|
+
};
|
|
632
955
|
|
|
633
|
-
|
|
634
|
-
|
|
956
|
+
if (field.isSubmit && !self.validExcute()) {
|
|
957
|
+
return;
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
if (field.alert) {
|
|
961
|
+
self.$common
|
|
962
|
+
.confirm(field.alertMsg, field.alertCaption, {
|
|
635
963
|
confirmButtonText: field.alertOKButtonText,
|
|
636
964
|
cancelButtonText: field.alertCancelButtonText,
|
|
637
965
|
//type: 'warning'
|
|
638
|
-
center: field.alertCenter
|
|
639
|
-
})
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
})
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
this.parentModel.$refs.table.
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
966
|
+
center: field.alertCenter,
|
|
967
|
+
})
|
|
968
|
+
.then(() => {
|
|
969
|
+
clickAcion(field, submitData);
|
|
970
|
+
})
|
|
971
|
+
.catch(() => {});
|
|
972
|
+
} else {
|
|
973
|
+
clickAcion(field, submitData);
|
|
974
|
+
}
|
|
975
|
+
},
|
|
976
|
+
clickNextHandler() {
|
|
977
|
+
let key = "chanceID";
|
|
978
|
+
if (this.parentModel && this.parentModel.$refs.table) {
|
|
979
|
+
let oldValue =
|
|
980
|
+
this.parentModel.$refs.table.model.listData[
|
|
981
|
+
this.parentModel.$refs.table.model.selectIndex
|
|
982
|
+
][key];
|
|
983
|
+
this.parentModel.$refs.table.rowKeyDownHandle(null, 1);
|
|
984
|
+
let newValue =
|
|
985
|
+
this.parentModel.$refs.table.model.listData[
|
|
986
|
+
this.parentModel.$refs.table.model.selectIndex
|
|
987
|
+
][key];
|
|
988
|
+
if (oldValue !== newValue) {
|
|
989
|
+
let parm = this.apiParam;
|
|
990
|
+
parm[key] = newValue;
|
|
991
|
+
this.loaderObj.Detail(this.api, parm, this.load);
|
|
659
992
|
}
|
|
660
|
-
}
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
993
|
+
}
|
|
994
|
+
},
|
|
995
|
+
clickPrevHandler() {
|
|
996
|
+
let key = "chanceID";
|
|
997
|
+
if (this.parentModel && this.parentModel.$refs.table) {
|
|
998
|
+
let oldValue =
|
|
999
|
+
this.parentModel.$refs.table.model.listData[
|
|
1000
|
+
this.parentModel.$refs.table.model.selectIndex
|
|
1001
|
+
][key];
|
|
1002
|
+
this.parentModel.$refs.table.rowKeyDownHandle(null, -1);
|
|
1003
|
+
let newValue =
|
|
1004
|
+
this.parentModel.$refs.table.model.listData[
|
|
1005
|
+
this.parentModel.$refs.table.model.selectIndex
|
|
1006
|
+
][key];
|
|
1007
|
+
if (oldValue !== newValue) {
|
|
1008
|
+
let parm = this.apiParam;
|
|
1009
|
+
parm[key] = newValue;
|
|
1010
|
+
this.loaderObj.Detail(this.api, parm, this.load);
|
|
672
1011
|
}
|
|
673
|
-
}
|
|
674
|
-
}
|
|
675
|
-
}
|
|
1012
|
+
}
|
|
1013
|
+
},
|
|
1014
|
+
},
|
|
1015
|
+
};
|
|
676
1016
|
</script>
|
|
677
1017
|
<style lang="scss" scoped>
|
|
678
|
-
.operation0
|
|
1018
|
+
.operation0,
|
|
1019
|
+
.operation20,
|
|
1020
|
+
.operation-1000 {
|
|
679
1021
|
color: #000000;
|
|
680
1022
|
}
|
|
681
|
-
.operation1
|
|
1023
|
+
.operation1,
|
|
1024
|
+
.operation10 {
|
|
682
1025
|
color: #388cd3;
|
|
683
1026
|
}
|
|
684
|
-
.operation2{
|
|
1027
|
+
.operation2 {
|
|
685
1028
|
color: #388cd3;
|
|
686
1029
|
}
|
|
687
|
-
.main{
|
|
688
|
-
background: #
|
|
1030
|
+
.main {
|
|
1031
|
+
background: #eceff2;
|
|
689
1032
|
}
|
|
690
|
-
.rel{
|
|
1033
|
+
.rel {
|
|
691
1034
|
position: relative;
|
|
692
1035
|
}
|
|
693
1036
|
.y-auto {
|
|
694
|
-
|
|
695
|
-
|
|
1037
|
+
overflow-y: auto;
|
|
1038
|
+
overflow-x: auto;
|
|
1039
|
+
}
|
|
1040
|
+
.w64 {
|
|
1041
|
+
width: 64px !important;
|
|
1042
|
+
}
|
|
1043
|
+
.w93 {
|
|
1044
|
+
width: 93px !important;
|
|
696
1045
|
}
|
|
697
|
-
.w64{width: 64px!important}
|
|
698
|
-
.w93{width: 93px!important}
|
|
699
1046
|
.w300 {
|
|
700
1047
|
width: 300px;
|
|
701
1048
|
}
|
|
702
|
-
.mt5{
|
|
1049
|
+
.mt5 {
|
|
703
1050
|
margin-top: 5px;
|
|
704
1051
|
}
|
|
705
|
-
.mt10{
|
|
1052
|
+
.mt10 {
|
|
706
1053
|
margin-top: 10px;
|
|
707
1054
|
}
|
|
708
|
-
.mt15{
|
|
1055
|
+
.mt15 {
|
|
709
1056
|
margin-top: 15px;
|
|
710
1057
|
}
|
|
711
|
-
.mb10{
|
|
1058
|
+
.mb10 {
|
|
712
1059
|
margin-bottom: 10px;
|
|
713
1060
|
}
|
|
714
1061
|
.mb20 {
|
|
715
|
-
|
|
1062
|
+
margin-bottom: 20px;
|
|
716
1063
|
}
|
|
717
|
-
.mr10{
|
|
1064
|
+
.mr10 {
|
|
718
1065
|
margin-right: 10px;
|
|
719
1066
|
}
|
|
720
1067
|
.p0 {
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
1068
|
+
padding: 0 !important;
|
|
1069
|
+
}
|
|
1070
|
+
.pb10 {
|
|
1071
|
+
padding-bottom: 10px !important;
|
|
1072
|
+
}
|
|
1073
|
+
.f-wb {
|
|
1074
|
+
font-weight: bold;
|
|
1075
|
+
}
|
|
1076
|
+
.base-box {
|
|
1077
|
+
background: #ffffff;
|
|
1078
|
+
border-radius: 6px;
|
|
1079
|
+
width: 100%;
|
|
728
1080
|
}
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
1081
|
+
.details-content {
|
|
1082
|
+
font-size: 12px;
|
|
1083
|
+
.title-l {
|
|
1084
|
+
font-weight: Bold;
|
|
1085
|
+
font-size: 16px;
|
|
1086
|
+
color: #333333;
|
|
733
1087
|
}
|
|
734
|
-
.details-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
1088
|
+
.details-head {
|
|
1089
|
+
padding: 16px;
|
|
1090
|
+
display: flex;
|
|
1091
|
+
.head-type {
|
|
1092
|
+
font-size: 20px;
|
|
1093
|
+
background: #ee6b6b;
|
|
1094
|
+
color: #ffffff;
|
|
1095
|
+
padding: 0 14px;
|
|
1096
|
+
border-radius: 6px;
|
|
1097
|
+
max-height: 40px;
|
|
1098
|
+
line-height: 40px;
|
|
1099
|
+
font-weight: Bold;
|
|
1100
|
+
}
|
|
1101
|
+
.head-info {
|
|
1102
|
+
margin-left: 10px;
|
|
1103
|
+
}
|
|
1104
|
+
.title {
|
|
1105
|
+
font-weight: Bold;
|
|
1106
|
+
font-size: 16px;
|
|
1107
|
+
margin-bottom: 3px;
|
|
1108
|
+
}
|
|
1109
|
+
.head-line {
|
|
1110
|
+
display: inline-block;
|
|
1111
|
+
height: 16px;
|
|
1112
|
+
width: 2px;
|
|
1113
|
+
background: #333333;
|
|
1114
|
+
margin: 0 4px;
|
|
1115
|
+
position: relative;
|
|
1116
|
+
top: 1.5px;
|
|
1117
|
+
}
|
|
1118
|
+
.collection {
|
|
1119
|
+
font-size: 18px;
|
|
1120
|
+
margin-left: 10px;
|
|
1121
|
+
cursor: pointer;
|
|
1122
|
+
vertical-align: -2.85px;
|
|
1123
|
+
}
|
|
1124
|
+
.title-other {
|
|
1125
|
+
color: #999999;
|
|
1126
|
+
margin-bottom: 14px;
|
|
1127
|
+
font-size: 12px;
|
|
1128
|
+
span {
|
|
1129
|
+
margin-right: 20px;
|
|
1130
|
+
}
|
|
1131
|
+
.other-icon {
|
|
1132
|
+
font-size: 16px;
|
|
1133
|
+
}
|
|
1134
|
+
.location {
|
|
1135
|
+
font-size: 16px;
|
|
1136
|
+
vertical-align: -2.85px;
|
|
1137
|
+
}
|
|
1138
|
+
}
|
|
1139
|
+
.title-tags {
|
|
743
1140
|
display: flex;
|
|
744
|
-
.
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
1141
|
+
.t-tag {
|
|
1142
|
+
color: #999999;
|
|
1143
|
+
background: #f3f3f3;
|
|
1144
|
+
border: 1px solid #d8d8d8;
|
|
1145
|
+
padding: 2px 9px;
|
|
1146
|
+
border-radius: 3px;
|
|
1147
|
+
margin-right: 10px;
|
|
1148
|
+
}
|
|
1149
|
+
}
|
|
1150
|
+
.head-but {
|
|
1151
|
+
margin-left: auto;
|
|
1152
|
+
font-size: 12px;
|
|
1153
|
+
text-align: right;
|
|
1154
|
+
.max-report {
|
|
1155
|
+
height: 26px;
|
|
1156
|
+
color: #333333;
|
|
1157
|
+
background-color: #ffffff;
|
|
1158
|
+
border: 1px solid #e0e0e0;
|
|
1159
|
+
border-radius: 6px;
|
|
1160
|
+
font-size: 12px;
|
|
1161
|
+
}
|
|
1162
|
+
.max-report:hover .report-cont {
|
|
1163
|
+
display: block;
|
|
1164
|
+
color: #333;
|
|
1165
|
+
}
|
|
1166
|
+
.report-cont {
|
|
1167
|
+
display: none;
|
|
1168
|
+
width: 115px;
|
|
1169
|
+
background: #fff;
|
|
1170
|
+
-webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
|
|
1171
|
+
box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
|
|
1172
|
+
border-radius: 5px;
|
|
1173
|
+
list-style: none;
|
|
1174
|
+
position: absolute;
|
|
1175
|
+
left: -61px;
|
|
1176
|
+
top: 26px;
|
|
1177
|
+
padding: 5px 0;
|
|
1178
|
+
color: #333;
|
|
1179
|
+
}
|
|
1180
|
+
.report-cont li {
|
|
1181
|
+
padding: 5px 10px;
|
|
1182
|
+
}
|
|
1183
|
+
}
|
|
1184
|
+
}
|
|
1185
|
+
.details-mid {
|
|
1186
|
+
display: flex;
|
|
1187
|
+
justify-content: space-between;
|
|
1188
|
+
.mid-l {
|
|
1189
|
+
flex: 1;
|
|
1190
|
+
display: flex;
|
|
1191
|
+
flex-direction: column;
|
|
1192
|
+
|
|
1193
|
+
.hous-info {
|
|
1194
|
+
padding-bottom: 10px;
|
|
1195
|
+
.base-clolr {
|
|
1196
|
+
color: #ee6b6b;
|
|
757
1197
|
}
|
|
758
|
-
.
|
|
759
|
-
|
|
1198
|
+
.expand-f {
|
|
1199
|
+
line-height: 15px;
|
|
760
1200
|
font-size: 16px;
|
|
761
|
-
|
|
762
|
-
|
|
1201
|
+
font-weight: bold;
|
|
1202
|
+
img {
|
|
1203
|
+
width: 15px !important;
|
|
1204
|
+
margin-left: 0 !important;
|
|
1205
|
+
}
|
|
1206
|
+
span {
|
|
1207
|
+
float: right;
|
|
1208
|
+
}
|
|
763
1209
|
}
|
|
764
|
-
.
|
|
1210
|
+
.img-jsq {
|
|
1211
|
+
width: 14px;
|
|
1212
|
+
height: 14px;
|
|
765
1213
|
display: inline-block;
|
|
766
|
-
height: 16px;
|
|
767
|
-
width: 2px;
|
|
768
|
-
background: #333333;
|
|
769
|
-
margin: 0 4px;
|
|
770
|
-
position: relative;
|
|
771
|
-
top: 1.5px;
|
|
772
|
-
}
|
|
773
|
-
.collection{
|
|
774
|
-
font-size: 18px;
|
|
775
1214
|
margin-left: 10px;
|
|
776
|
-
cursor: pointer;
|
|
777
|
-
vertical-align: -2.85px;
|
|
778
1215
|
}
|
|
779
|
-
.
|
|
780
|
-
color: #999999;
|
|
781
|
-
margin-bottom: 14px;
|
|
782
|
-
font-size: 12px;
|
|
783
|
-
span {
|
|
784
|
-
margin-right: 20px;
|
|
785
|
-
}
|
|
786
|
-
.other-icon {
|
|
787
|
-
font-size: 16px;
|
|
788
|
-
}
|
|
789
|
-
.location{
|
|
790
|
-
font-size: 16px;
|
|
791
|
-
vertical-align: -2.85px;
|
|
792
|
-
}
|
|
793
|
-
}
|
|
794
|
-
.title-tags {
|
|
1216
|
+
.info-conten {
|
|
795
1217
|
display: flex;
|
|
796
|
-
.
|
|
797
|
-
|
|
798
|
-
background: #F3F3F3;
|
|
799
|
-
border: 1px solid #d8d8d8;
|
|
800
|
-
padding: 2px 9px;
|
|
801
|
-
border-radius: 3px;
|
|
802
|
-
margin-right: 10px;
|
|
803
|
-
}
|
|
804
|
-
}
|
|
805
|
-
.head-but{
|
|
806
|
-
margin-left: auto;
|
|
807
|
-
font-size: 12px;
|
|
808
|
-
text-align: right;
|
|
809
|
-
.max-report{
|
|
810
|
-
height: 26px;
|
|
811
|
-
color: #333333;
|
|
812
|
-
background-color: #FFFFFF;
|
|
813
|
-
border: 1px solid #E0E0E0;
|
|
814
|
-
border-radius: 6px;
|
|
815
|
-
font-size: 12px;
|
|
816
|
-
}
|
|
817
|
-
.max-report:hover .report-cont{
|
|
818
|
-
display: block;
|
|
819
|
-
color: #333;
|
|
820
|
-
}
|
|
821
|
-
.report-cont{
|
|
822
|
-
display: none;
|
|
823
|
-
width: 115px;
|
|
824
|
-
background: #fff;
|
|
825
|
-
-webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
|
|
826
|
-
box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
|
|
827
|
-
border-radius: 5px;
|
|
828
|
-
list-style: none;
|
|
829
|
-
position: absolute;
|
|
830
|
-
left: -61px;
|
|
831
|
-
top: 26px;
|
|
832
|
-
padding: 5px 0;
|
|
833
|
-
color: #333;
|
|
834
|
-
}
|
|
835
|
-
.report-cont li{
|
|
836
|
-
padding: 5px 10px;
|
|
1218
|
+
.info-row {
|
|
1219
|
+
display: flex;
|
|
837
1220
|
}
|
|
838
|
-
}
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
}
|
|
842
|
-
.details-mid {
|
|
843
|
-
display: flex;
|
|
844
|
-
justify-content: space-between;
|
|
845
|
-
.mid-l {
|
|
846
|
-
flex: 1;
|
|
847
|
-
display: flex;
|
|
848
|
-
flex-direction: column;
|
|
849
1221
|
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
font-size: 16px;
|
|
858
|
-
font-weight: bold;
|
|
859
|
-
img{
|
|
860
|
-
width: 15px!important;
|
|
861
|
-
margin-left: 0!important;
|
|
862
|
-
}
|
|
863
|
-
span{
|
|
864
|
-
float:right;
|
|
865
|
-
}
|
|
866
|
-
}
|
|
867
|
-
.img-jsq{
|
|
868
|
-
width: 14px;
|
|
869
|
-
height: 14px;
|
|
870
|
-
display: inline-block;
|
|
871
|
-
margin-left: 10px;
|
|
872
|
-
}
|
|
873
|
-
.info-conten {
|
|
874
|
-
display: flex;
|
|
875
|
-
.info-row {
|
|
876
|
-
display: flex;
|
|
877
|
-
}
|
|
878
|
-
|
|
879
|
-
.hous-t {
|
|
880
|
-
width: 260px;
|
|
881
|
-
.swiper-i {
|
|
882
|
-
position: relative;
|
|
1222
|
+
.hous-t {
|
|
1223
|
+
width: 260px;
|
|
1224
|
+
.swiper-i {
|
|
1225
|
+
position: relative;
|
|
1226
|
+
width: 100%;
|
|
1227
|
+
height: 100%;
|
|
1228
|
+
img {
|
|
883
1229
|
width: 100%;
|
|
884
1230
|
height: 100%;
|
|
1231
|
+
}
|
|
1232
|
+
.hous-icon {
|
|
1233
|
+
width: 60px;
|
|
1234
|
+
height: 60px;
|
|
1235
|
+
position: absolute;
|
|
1236
|
+
top: 50%;
|
|
1237
|
+
left: 50%;
|
|
1238
|
+
transform: translate(-50%, -50%);
|
|
1239
|
+
}
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
.hous-img {
|
|
1243
|
+
margin-top: 10px;
|
|
1244
|
+
width: 100%;
|
|
1245
|
+
overflow-x: hidden;
|
|
1246
|
+
overflow-y: hidden;
|
|
1247
|
+
white-space: nowrap;
|
|
1248
|
+
.img-i {
|
|
1249
|
+
position: relative;
|
|
1250
|
+
width: 82px;
|
|
1251
|
+
height: 45px;
|
|
1252
|
+
margin-right: 10px;
|
|
1253
|
+
display: inline-block;
|
|
1254
|
+
border: 2px #fff solid;
|
|
885
1255
|
img {
|
|
886
1256
|
width: 100%;
|
|
887
1257
|
height: 100%;
|
|
888
1258
|
}
|
|
889
|
-
.
|
|
890
|
-
width:
|
|
891
|
-
height:
|
|
1259
|
+
.img-bot {
|
|
1260
|
+
width: 100%;
|
|
1261
|
+
height: 16px;
|
|
1262
|
+
background: rgba(0, 0, 0, 0.5);
|
|
1263
|
+
color: #fff;
|
|
892
1264
|
position: absolute;
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
}
|
|
898
|
-
|
|
899
|
-
.hous-img {
|
|
900
|
-
margin-top: 10px;
|
|
901
|
-
width: 100%;
|
|
902
|
-
overflow-x: hidden;
|
|
903
|
-
overflow-y: hidden;
|
|
904
|
-
white-space: nowrap;
|
|
905
|
-
.img-i {
|
|
906
|
-
position: relative;
|
|
907
|
-
width: 82px;
|
|
908
|
-
height: 45px;
|
|
909
|
-
margin-right: 10px;
|
|
910
|
-
display: inline-block;
|
|
911
|
-
border: 2px #fff solid;
|
|
912
|
-
img{
|
|
913
|
-
width: 100%;
|
|
914
|
-
height: 100%;
|
|
915
|
-
|
|
916
|
-
}
|
|
917
|
-
.img-bot {
|
|
918
|
-
width: 100%;
|
|
919
|
-
height: 16px;
|
|
920
|
-
background: rgba(0, 0, 0, 0.5);
|
|
921
|
-
color: #fff;
|
|
922
|
-
position: absolute;
|
|
923
|
-
bottom: 0;
|
|
924
|
-
font-weight: Bold;
|
|
925
|
-
.img-icon {
|
|
926
|
-
width: 12px;
|
|
1265
|
+
bottom: 0;
|
|
1266
|
+
font-weight: Bold;
|
|
1267
|
+
.img-icon {
|
|
1268
|
+
width: 12px;
|
|
927
1269
|
height: 12px;
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
}
|
|
1270
|
+
margin: 0 5px;
|
|
1271
|
+
margin: 0 5px;
|
|
1272
|
+
vertical-align: -1.5px;
|
|
932
1273
|
}
|
|
933
1274
|
}
|
|
934
1275
|
}
|
|
935
1276
|
}
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
1277
|
+
}
|
|
1278
|
+
.hous-b {
|
|
1279
|
+
position: relative;
|
|
1280
|
+
margin-left: 16px;
|
|
1281
|
+
margin-top: 20px;
|
|
1282
|
+
flex: 1;
|
|
1283
|
+
.code-ewm {
|
|
1284
|
+
width: 32px;
|
|
1285
|
+
height: 32px;
|
|
1286
|
+
position: absolute;
|
|
1287
|
+
top: -32px;
|
|
1288
|
+
right: -12px;
|
|
1289
|
+
}
|
|
948
1290
|
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
1291
|
+
.row-i {
|
|
1292
|
+
width: 33.3%;
|
|
1293
|
+
display: flex;
|
|
1294
|
+
}
|
|
1295
|
+
.info-mid {
|
|
1296
|
+
margin: 35px 0 0 0;
|
|
1297
|
+
padding: 20px;
|
|
1298
|
+
border-top: 1px solid #e0e0e0;
|
|
1299
|
+
border-bottom: 1px solid #e0e0e0;
|
|
1300
|
+
display: flex;
|
|
1301
|
+
justify-content: space-between;
|
|
1302
|
+
.mid-i {
|
|
1303
|
+
text-align: center;
|
|
952
1304
|
}
|
|
953
|
-
.
|
|
954
|
-
margin:
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
justify-content: space-between;
|
|
960
|
-
.mid-i {
|
|
961
|
-
text-align: center;
|
|
962
|
-
}
|
|
963
|
-
.mid-i div:nth-child(1) {
|
|
964
|
-
margin-bottom: 10px;
|
|
965
|
-
}
|
|
966
|
-
.mid-i div:nth-child(2) {
|
|
967
|
-
font-size: 14px;
|
|
968
|
-
font-weight: bold;
|
|
969
|
-
}
|
|
1305
|
+
.mid-i div:nth-child(1) {
|
|
1306
|
+
margin-bottom: 10px;
|
|
1307
|
+
}
|
|
1308
|
+
.mid-i div:nth-child(2) {
|
|
1309
|
+
font-size: 14px;
|
|
1310
|
+
font-weight: bold;
|
|
970
1311
|
}
|
|
971
1312
|
}
|
|
972
1313
|
}
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
.row-i{
|
|
982
|
-
width: 25%;
|
|
983
|
-
}
|
|
984
|
-
.row-i100{
|
|
985
|
-
width: 100%;
|
|
986
|
-
}
|
|
1314
|
+
}
|
|
1315
|
+
.info-conten-b {
|
|
1316
|
+
display: flex;
|
|
1317
|
+
margin-top: 15px;
|
|
1318
|
+
.info-row {
|
|
1319
|
+
display: flex;
|
|
1320
|
+
width: 100%;
|
|
1321
|
+
padding-left: 9px;
|
|
987
1322
|
}
|
|
988
|
-
.
|
|
989
|
-
|
|
990
|
-
padding: 3px 0;
|
|
1323
|
+
.row-i {
|
|
1324
|
+
width: 25%;
|
|
991
1325
|
}
|
|
992
|
-
.
|
|
993
|
-
|
|
994
|
-
background-size: 100% 100%;
|
|
995
|
-
width: 18px;
|
|
996
|
-
height: 9px;
|
|
997
|
-
display: inline-block;
|
|
1326
|
+
.row-i100 {
|
|
1327
|
+
width: 100%;
|
|
998
1328
|
}
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1329
|
+
}
|
|
1330
|
+
.open-mero {
|
|
1331
|
+
text-align: center;
|
|
1332
|
+
padding: 3px 0;
|
|
1333
|
+
}
|
|
1334
|
+
.more-colose {
|
|
1335
|
+
background: url("../../../assets/mero-colose.png") no-repeat;
|
|
1336
|
+
background-size: 100% 100%;
|
|
1337
|
+
width: 18px;
|
|
1338
|
+
height: 9px;
|
|
1339
|
+
display: inline-block;
|
|
1340
|
+
}
|
|
1341
|
+
.mero-open {
|
|
1342
|
+
background: url("../../../assets/more-open.png") no-repeat;
|
|
1343
|
+
background-size: 100% 100%;
|
|
1344
|
+
width: 18px;
|
|
1345
|
+
height: 9px;
|
|
1346
|
+
display: inline-block;
|
|
1347
|
+
}
|
|
1348
|
+
.hous-mero {
|
|
1349
|
+
display: flex;
|
|
1350
|
+
.mero-labe {
|
|
1351
|
+
min-width: 60px;
|
|
1005
1352
|
}
|
|
1006
|
-
|
|
1353
|
+
}
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1356
|
+
.contacts-info {
|
|
1357
|
+
padding: 16px;
|
|
1358
|
+
.contacts-head {
|
|
1359
|
+
display: flex;
|
|
1360
|
+
align-items: center;
|
|
1361
|
+
justify-content: space-between;
|
|
1362
|
+
|
|
1363
|
+
.contacts-but {
|
|
1364
|
+
height: 30px;
|
|
1365
|
+
font-weight: Bold;
|
|
1366
|
+
}
|
|
1367
|
+
.contacts-tips {
|
|
1007
1368
|
display: flex;
|
|
1008
|
-
.mero-labe {
|
|
1009
|
-
min-width: 60px;
|
|
1010
|
-
}
|
|
1011
1369
|
}
|
|
1012
1370
|
}
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
align-items: center;
|
|
1019
|
-
justify-content: space-between;
|
|
1020
|
-
|
|
1021
|
-
.contacts-but {
|
|
1022
|
-
height: 30px;
|
|
1023
|
-
font-weight: Bold;
|
|
1024
|
-
}
|
|
1025
|
-
.contacts-tips {
|
|
1026
|
-
display: flex;
|
|
1027
|
-
}
|
|
1371
|
+
.contacts-table {
|
|
1372
|
+
margin-top: 16px;
|
|
1373
|
+
.table-icon {
|
|
1374
|
+
font-size: 14px;
|
|
1375
|
+
margin-left: 4px;
|
|
1028
1376
|
}
|
|
1029
|
-
.
|
|
1030
|
-
|
|
1031
|
-
.table-icon {
|
|
1032
|
-
font-size: 14px;
|
|
1033
|
-
margin-left: 4px;
|
|
1034
|
-
}
|
|
1035
|
-
.el-table {
|
|
1036
|
-
font-size: 12px;
|
|
1037
|
-
}
|
|
1038
|
-
.el-table th.el-table__cell > .cell {
|
|
1039
|
-
padding-left: 16px;
|
|
1040
|
-
}
|
|
1041
|
-
.el-table .cell {
|
|
1042
|
-
padding-left: 16px;
|
|
1043
|
-
}
|
|
1044
|
-
.el-table--striped
|
|
1045
|
-
.el-table__body
|
|
1046
|
-
tr.el-table__row--striped
|
|
1047
|
-
td.el-table__cell {
|
|
1048
|
-
background: 1px solid #E0E0E0;
|
|
1049
|
-
}
|
|
1377
|
+
.el-table {
|
|
1378
|
+
font-size: 12px;
|
|
1050
1379
|
}
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
.
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1380
|
+
.el-table th.el-table__cell > .cell {
|
|
1381
|
+
padding-left: 16px;
|
|
1382
|
+
}
|
|
1383
|
+
.el-table .cell {
|
|
1384
|
+
padding-left: 16px;
|
|
1385
|
+
}
|
|
1386
|
+
.el-table--striped
|
|
1387
|
+
.el-table__body
|
|
1388
|
+
tr.el-table__row--striped
|
|
1389
|
+
td.el-table__cell {
|
|
1390
|
+
background: 1px solid #e0e0e0;
|
|
1061
1391
|
}
|
|
1062
1392
|
}
|
|
1393
|
+
}
|
|
1063
1394
|
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
.contribute-i {
|
|
1071
|
-
width: calc((100% - 16px * 3) / 4);
|
|
1072
|
-
margin: 16px 16px 0 0;
|
|
1073
|
-
padding: 16px 0 16px 16px;
|
|
1074
|
-
border: 1px solid #e0e0e0;
|
|
1075
|
-
border-radius: 6px;
|
|
1076
|
-
display: flex;
|
|
1077
|
-
img {
|
|
1078
|
-
width: 50px;
|
|
1079
|
-
height: 50px;
|
|
1080
|
-
margin-right: 6px;
|
|
1081
|
-
}
|
|
1082
|
-
.user-title {
|
|
1083
|
-
font-weight: Bold;
|
|
1084
|
-
font-size: 14px;
|
|
1085
|
-
margin-bottom: 8px;
|
|
1086
|
-
}
|
|
1087
|
-
.user-but{
|
|
1088
|
-
cursor: pointer;
|
|
1089
|
-
font-size: 12px;
|
|
1090
|
-
color: #FFFFFF;
|
|
1091
|
-
background: #FBD46D;
|
|
1092
|
-
height: 20px;
|
|
1093
|
-
line-height: 20px;
|
|
1094
|
-
border-radius: 3px;
|
|
1095
|
-
text-align: center;
|
|
1096
|
-
padding: 0 10px;
|
|
1097
|
-
|
|
1098
|
-
}
|
|
1099
|
-
|
|
1100
|
-
}
|
|
1101
|
-
|
|
1102
|
-
.contribute-i:nth-child(4n) {
|
|
1103
|
-
margin-right: 0;
|
|
1104
|
-
}
|
|
1395
|
+
.tablist-info {
|
|
1396
|
+
.details-tabs-box {
|
|
1397
|
+
.el-menu--horizontal > .el-menu-item {
|
|
1398
|
+
height: 30px;
|
|
1399
|
+
line-height: 30px;
|
|
1400
|
+
border-radius: none;
|
|
1105
1401
|
}
|
|
1106
1402
|
}
|
|
1107
1403
|
}
|
|
1108
|
-
.mid-l > div {
|
|
1109
|
-
margin-bottom: 10px;
|
|
1110
|
-
padding: 16px;
|
|
1111
|
-
}
|
|
1112
|
-
.mid-r > div {
|
|
1113
|
-
margin-bottom: 10px;
|
|
1114
|
-
padding: 16px;
|
|
1115
|
-
}
|
|
1116
|
-
.mid-r {
|
|
1117
|
-
width: 26.666%;
|
|
1118
|
-
margin-left: 10px;
|
|
1119
1404
|
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1405
|
+
.contribute-info {
|
|
1406
|
+
.contribute-list {
|
|
1407
|
+
width: 100%;
|
|
1408
|
+
display: flex;
|
|
1409
|
+
align-content: flex-start;
|
|
1410
|
+
flex-flow: row wrap;
|
|
1411
|
+
.contribute-i {
|
|
1412
|
+
width: calc((100% - 16px * 3) / 4);
|
|
1413
|
+
margin: 16px 16px 0 0;
|
|
1414
|
+
padding: 16px 0 16px 16px;
|
|
1415
|
+
border: 1px solid #e0e0e0;
|
|
1416
|
+
border-radius: 6px;
|
|
1123
1417
|
display: flex;
|
|
1124
|
-
margin-bottom: 16px;
|
|
1125
1418
|
img {
|
|
1126
1419
|
width: 50px;
|
|
1127
1420
|
height: 50px;
|
|
1128
|
-
margin-right:
|
|
1421
|
+
margin-right: 6px;
|
|
1129
1422
|
}
|
|
1130
|
-
.user-
|
|
1131
|
-
display: flex;
|
|
1132
|
-
}
|
|
1133
|
-
.text {
|
|
1134
|
-
font-size: 14px;
|
|
1423
|
+
.user-title {
|
|
1135
1424
|
font-weight: Bold;
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
.user-other {
|
|
1139
|
-
min-height: 200px;
|
|
1425
|
+
font-size: 14px;
|
|
1426
|
+
margin-bottom: 8px;
|
|
1140
1427
|
}
|
|
1141
|
-
.user-but{
|
|
1428
|
+
.user-but {
|
|
1429
|
+
cursor: pointer;
|
|
1142
1430
|
font-size: 12px;
|
|
1143
|
-
color: #
|
|
1144
|
-
background: #
|
|
1431
|
+
color: #ffffff;
|
|
1432
|
+
background: #fbd46d;
|
|
1145
1433
|
height: 20px;
|
|
1146
1434
|
line-height: 20px;
|
|
1147
1435
|
border-radius: 3px;
|
|
1148
1436
|
text-align: center;
|
|
1149
1437
|
padding: 0 10px;
|
|
1438
|
+
}
|
|
1150
1439
|
}
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
.red-text {
|
|
1155
|
-
font-size: 18px;
|
|
1156
|
-
font-weight: bold;
|
|
1157
|
-
color: #EE6B6B;
|
|
1440
|
+
|
|
1441
|
+
.contribute-i:nth-child(4n) {
|
|
1442
|
+
margin-right: 0;
|
|
1158
1443
|
}
|
|
1159
1444
|
}
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
min-width: 60px;
|
|
1184
|
-
}
|
|
1185
|
-
}
|
|
1186
|
-
|
|
1187
|
-
|
|
1445
|
+
}
|
|
1446
|
+
}
|
|
1447
|
+
.mid-l > div {
|
|
1448
|
+
margin-bottom: 10px;
|
|
1449
|
+
padding: 16px;
|
|
1450
|
+
}
|
|
1451
|
+
.mid-r > div {
|
|
1452
|
+
margin-bottom: 10px;
|
|
1453
|
+
padding: 16px;
|
|
1454
|
+
}
|
|
1455
|
+
.mid-r {
|
|
1456
|
+
width: 26.666%;
|
|
1457
|
+
margin-left: 10px;
|
|
1458
|
+
|
|
1459
|
+
display: flex;
|
|
1460
|
+
flex-direction: column;
|
|
1461
|
+
.tab-conten {
|
|
1462
|
+
display: flex;
|
|
1463
|
+
margin-bottom: 16px;
|
|
1464
|
+
img {
|
|
1465
|
+
width: 50px;
|
|
1466
|
+
height: 50px;
|
|
1467
|
+
margin-right: 10px;
|
|
1188
1468
|
}
|
|
1189
|
-
.
|
|
1469
|
+
.user-name {
|
|
1190
1470
|
display: flex;
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1471
|
+
}
|
|
1472
|
+
.text {
|
|
1473
|
+
font-size: 14px;
|
|
1474
|
+
font-weight: Bold;
|
|
1475
|
+
margin-right: 10px;
|
|
1476
|
+
}
|
|
1477
|
+
.user-other {
|
|
1478
|
+
min-height: 200px;
|
|
1479
|
+
}
|
|
1480
|
+
.user-but {
|
|
1481
|
+
cursor: pointer;
|
|
1482
|
+
font-size: 12px;
|
|
1483
|
+
color: #ffffff;
|
|
1484
|
+
background: #fbd46d;
|
|
1485
|
+
height: 20px;
|
|
1486
|
+
line-height: 20px;
|
|
1487
|
+
border-radius: 3px;
|
|
1488
|
+
text-align: center;
|
|
1489
|
+
padding: 0 10px;
|
|
1490
|
+
}
|
|
1491
|
+
}
|
|
1492
|
+
.take-info {
|
|
1493
|
+
font-size: 16px;
|
|
1494
|
+
.red-text {
|
|
1495
|
+
font-size: 18px;
|
|
1496
|
+
font-weight: bold;
|
|
1497
|
+
color: #ee6b6b;
|
|
1498
|
+
}
|
|
1499
|
+
}
|
|
1500
|
+
.staff-info {
|
|
1501
|
+
padding-bottom: 10px;
|
|
1502
|
+
.open-mero {
|
|
1503
|
+
text-align: center;
|
|
1504
|
+
padding: 3px 0;
|
|
1505
|
+
}
|
|
1506
|
+
.more-colose {
|
|
1507
|
+
background: url("../../../assets/mero-colose.png") no-repeat;
|
|
1508
|
+
background-size: 100% 100%;
|
|
1509
|
+
width: 18px;
|
|
1510
|
+
height: 9px;
|
|
1511
|
+
display: inline-block;
|
|
1512
|
+
}
|
|
1513
|
+
.mero-open {
|
|
1514
|
+
background: url("../../../assets/more-open.png") no-repeat;
|
|
1515
|
+
background-size: 100% 100%;
|
|
1516
|
+
width: 18px;
|
|
1517
|
+
height: 9px;
|
|
1518
|
+
display: inline-block;
|
|
1519
|
+
}
|
|
1520
|
+
.hous-mero {
|
|
1521
|
+
display: flex;
|
|
1522
|
+
.mero-labe {
|
|
1523
|
+
min-width: 60px;
|
|
1210
1524
|
}
|
|
1211
1525
|
}
|
|
1526
|
+
}
|
|
1527
|
+
.operation-list {
|
|
1528
|
+
display: flex;
|
|
1529
|
+
align-items: center;
|
|
1530
|
+
justify-content: space-between;
|
|
1531
|
+
.list-item {
|
|
1532
|
+
width: 33.3%;
|
|
1533
|
+
height: 62px;
|
|
1534
|
+
font-size: 14px;
|
|
1535
|
+
text-align: center;
|
|
1536
|
+
font-weight: bold;
|
|
1537
|
+
border: none;
|
|
1538
|
+
}
|
|
1539
|
+
.list-item:hover {
|
|
1540
|
+
color: #fff;
|
|
1541
|
+
background: #ff9393;
|
|
1542
|
+
}
|
|
1543
|
+
.list-item:nth-child(2) {
|
|
1544
|
+
margin: 0 10px;
|
|
1545
|
+
}
|
|
1546
|
+
.list-item:nth-child(3) {
|
|
1547
|
+
margin-left: 0;
|
|
1548
|
+
}
|
|
1549
|
+
}
|
|
1212
1550
|
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1551
|
+
.operation-table {
|
|
1552
|
+
padding: 0;
|
|
1553
|
+
.table-box {
|
|
1554
|
+
display: flex;
|
|
1555
|
+
// align-items: center;
|
|
1556
|
+
border-bottom: 1px solid #e0e0e0;
|
|
1557
|
+
.t-item {
|
|
1558
|
+
padding: 5px 16px;
|
|
1559
|
+
font-size: 14px;
|
|
1560
|
+
flex: 1;
|
|
1561
|
+
position: relative;
|
|
1216
1562
|
display: flex;
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
.t-but {
|
|
1235
|
-
font-size: 12px;
|
|
1236
|
-
margin-left: 0;
|
|
1237
|
-
width: 104px;
|
|
1238
|
-
// height: 100%;
|
|
1239
|
-
// margin: 12px 16px 0 16px;
|
|
1240
|
-
margin-top: 12px;
|
|
1241
|
-
padding: 0;
|
|
1242
|
-
}
|
|
1243
|
-
.t-but:nth-last-child(1) {
|
|
1244
|
-
margin-bottom: 12px;
|
|
1245
|
-
}
|
|
1563
|
+
flex-flow: column;
|
|
1564
|
+
align-items: flex-start;
|
|
1565
|
+
border-right: 1px solid #e0e0e0;
|
|
1566
|
+
.i {
|
|
1567
|
+
position: absolute;
|
|
1568
|
+
top: 50%;
|
|
1569
|
+
// left: 50%;
|
|
1570
|
+
transform: translateY(-50%);
|
|
1571
|
+
}
|
|
1572
|
+
.t-but {
|
|
1573
|
+
font-size: 12px;
|
|
1574
|
+
margin-left: 0;
|
|
1575
|
+
width: 104px;
|
|
1576
|
+
// height: 100%;
|
|
1577
|
+
// margin: 12px 16px 0 16px;
|
|
1578
|
+
margin-top: 12px;
|
|
1579
|
+
padding: 0;
|
|
1246
1580
|
}
|
|
1247
|
-
.t-
|
|
1248
|
-
|
|
1581
|
+
.t-but:nth-last-child(1) {
|
|
1582
|
+
margin-bottom: 12px;
|
|
1249
1583
|
}
|
|
1250
1584
|
}
|
|
1251
|
-
.
|
|
1252
|
-
border-
|
|
1585
|
+
.t-item:nth-last-child(1) {
|
|
1586
|
+
border-right: 0;
|
|
1253
1587
|
}
|
|
1254
1588
|
}
|
|
1589
|
+
.table-box:nth-last-child(1) {
|
|
1590
|
+
border-bottom: 0;
|
|
1591
|
+
}
|
|
1592
|
+
}
|
|
1255
1593
|
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1594
|
+
.customer {
|
|
1595
|
+
background: #fff;
|
|
1596
|
+
border-radius: 6px;
|
|
1597
|
+
width: 100%;
|
|
1598
|
+
.customer-title {
|
|
1599
|
+
font-weight: Bold;
|
|
1600
|
+
font-size: 16px;
|
|
1601
|
+
color: #333;
|
|
1602
|
+
}
|
|
1603
|
+
.customre-line {
|
|
1604
|
+
width: 100%;
|
|
1605
|
+
height: 1px;
|
|
1606
|
+
margin-top: 10px;
|
|
1607
|
+
background: #e0e0e0;
|
|
1608
|
+
}
|
|
1609
|
+
.match-customre {
|
|
1610
|
+
display: flex;
|
|
1611
|
+
margin-top: 10px;
|
|
1612
|
+
.customre-name {
|
|
1613
|
+
font-weight: Bold;
|
|
1614
|
+
font-size: 14px;
|
|
1615
|
+
color: #333333;
|
|
1616
|
+
margin-right: 10px;
|
|
1264
1617
|
}
|
|
1265
|
-
.
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1618
|
+
.t-tag {
|
|
1619
|
+
width: 41px;
|
|
1620
|
+
color: #999;
|
|
1621
|
+
background: #f3f3f3;
|
|
1622
|
+
border: 1px solid #d8d8d8;
|
|
1623
|
+
padding: 2px 9px;
|
|
1624
|
+
border-radius: 3px;
|
|
1625
|
+
margin-right: 10px;
|
|
1270
1626
|
}
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1627
|
+
}
|
|
1628
|
+
.user-but {
|
|
1629
|
+
cursor: pointer;
|
|
1630
|
+
font-size: 12px;
|
|
1631
|
+
color: #ffffff;
|
|
1632
|
+
background: #fbd46d;
|
|
1633
|
+
height: 20px;
|
|
1634
|
+
line-height: 20px;
|
|
1635
|
+
border-radius: 3px;
|
|
1636
|
+
text-align: center;
|
|
1637
|
+
padding: 0 10px;
|
|
1638
|
+
}
|
|
1639
|
+
.customr-name {
|
|
1640
|
+
position: absolute;
|
|
1641
|
+
right: 0;
|
|
1642
|
+
}
|
|
1643
|
+
.clearfix {
|
|
1644
|
+
clear: both;
|
|
1645
|
+
}
|
|
1646
|
+
.customre-l {
|
|
1647
|
+
float: left;
|
|
1648
|
+
width: 50%;
|
|
1649
|
+
margin-top: 10px;
|
|
1650
|
+
.row-i {
|
|
1651
|
+
padding: 5px 0;
|
|
1289
1652
|
}
|
|
1290
|
-
|
|
1291
|
-
cursor: pointer;
|
|
1292
|
-
font-size: 12px;
|
|
1293
|
-
color: #FFFFFF;
|
|
1294
|
-
background: #FBD46D;
|
|
1295
|
-
height: 20px;
|
|
1296
|
-
line-height: 20px;
|
|
1297
|
-
border-radius: 3px;
|
|
1298
|
-
text-align: center;
|
|
1299
|
-
padding: 0 10px;
|
|
1300
|
-
|
|
1301
|
-
}
|
|
1302
|
-
.customr-name{
|
|
1303
|
-
position: absolute;
|
|
1304
|
-
right: 0;
|
|
1305
|
-
}
|
|
1306
|
-
.clearfix{
|
|
1307
|
-
clear: both;
|
|
1308
|
-
}
|
|
1309
|
-
.customre-l{
|
|
1310
|
-
float: left;
|
|
1311
|
-
width: 50%;
|
|
1312
|
-
margin-top: 10px;
|
|
1313
|
-
.row-i{
|
|
1314
|
-
padding: 5px 0;
|
|
1315
|
-
}
|
|
1653
|
+
}
|
|
1316
1654
|
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
.row-i{
|
|
1324
|
-
padding: 5px 0;
|
|
1325
|
-
}
|
|
1655
|
+
.customre-r {
|
|
1656
|
+
float: right;
|
|
1657
|
+
width: 50%;
|
|
1658
|
+
margin-top: 10px;
|
|
1659
|
+
.row-i {
|
|
1660
|
+
padding: 5px 0;
|
|
1326
1661
|
}
|
|
1327
1662
|
}
|
|
1328
1663
|
}
|
|
1329
1664
|
}
|
|
1330
1665
|
}
|
|
1331
|
-
// 按钮
|
|
1332
|
-
.max-info{
|
|
1333
|
-
height: 26px;
|
|
1334
|
-
color: #333333;
|
|
1335
|
-
background-color: #FFFFFF;
|
|
1336
|
-
border: 1px solid #E0E0E0;
|
|
1337
|
-
border-radius: 6px;
|
|
1338
|
-
font-size: 12px;
|
|
1339
|
-
}
|
|
1340
|
-
.max-default{
|
|
1341
|
-
border: 1px solid #EE6B6B;
|
|
1342
|
-
color: #EE6B6B;
|
|
1343
|
-
height: 26px;
|
|
1344
|
-
|
|
1345
|
-
border-radius: 6px;
|
|
1346
|
-
font-size: 12px;
|
|
1347
|
-
}
|
|
1348
|
-
.max-info:hover,.max-default:hover{
|
|
1349
|
-
background-color:#FF9393;
|
|
1350
|
-
border-color: #FF9393;
|
|
1351
|
-
color: #fff;
|
|
1352
|
-
}
|
|
1353
|
-
// .max-infon:hover.report,.max-info:active.report{
|
|
1354
|
-
// color: #fff;
|
|
1355
|
-
// }
|
|
1356
|
-
.max-info:active,.max-default:active{
|
|
1357
|
-
background-color: #B33136;
|
|
1358
|
-
border-color: #B33136;
|
|
1359
|
-
color: #fff;
|
|
1360
|
-
}
|
|
1361
|
-
.max-btn-add button{ /*list-button*/
|
|
1362
|
-
height: 26px;
|
|
1363
|
-
background: #EE6B6B;
|
|
1364
|
-
box-shadow: 0px 2px 4px 0px rgba(238,107,107,0.25);
|
|
1365
|
-
border-radius: 6px;
|
|
1366
1666
|
}
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1667
|
+
// 按钮
|
|
1668
|
+
.max-info {
|
|
1669
|
+
height: 26px;
|
|
1670
|
+
color: #333333;
|
|
1671
|
+
background-color: #ffffff;
|
|
1672
|
+
border: 1px solid #e0e0e0;
|
|
1673
|
+
border-radius: 6px;
|
|
1674
|
+
font-size: 12px;
|
|
1370
1675
|
}
|
|
1371
|
-
.max-
|
|
1372
|
-
|
|
1373
|
-
|
|
1676
|
+
.max-default {
|
|
1677
|
+
border: 1px solid #ee6b6b;
|
|
1678
|
+
color: #ee6b6b;
|
|
1679
|
+
height: 26px;
|
|
1680
|
+
|
|
1681
|
+
border-radius: 6px;
|
|
1682
|
+
font-size: 12px;
|
|
1683
|
+
}
|
|
1684
|
+
.max-info:hover,
|
|
1685
|
+
.max-default:hover {
|
|
1686
|
+
background-color: #ff9393;
|
|
1687
|
+
border-color: #ff9393;
|
|
1688
|
+
color: #fff;
|
|
1689
|
+
}
|
|
1690
|
+
// .max-infon:hover.report,.max-info:active.report{
|
|
1691
|
+
// color: #fff;
|
|
1692
|
+
// }
|
|
1693
|
+
.max-info:active,
|
|
1694
|
+
.max-default:active {
|
|
1695
|
+
background-color: #b33136;
|
|
1696
|
+
border-color: #b33136;
|
|
1697
|
+
color: #fff;
|
|
1698
|
+
}
|
|
1699
|
+
.max-btn-add button {
|
|
1700
|
+
/*list-button*/
|
|
1701
|
+
height: 26px;
|
|
1702
|
+
background: #ee6b6b;
|
|
1703
|
+
box-shadow: 0px 2px 4px 0px rgba(238, 107, 107, 0.25);
|
|
1704
|
+
border-radius: 6px;
|
|
1374
1705
|
}
|
|
1375
|
-
.max-
|
|
1376
|
-
|
|
1377
|
-
|
|
1706
|
+
.max-btn-add button:hover {
|
|
1707
|
+
background-color: #ff9393;
|
|
1708
|
+
border-color: #ff9393;
|
|
1378
1709
|
}
|
|
1379
|
-
.
|
|
1710
|
+
.max-btn-add button:focus,
|
|
1711
|
+
.max-btn-add button:active {
|
|
1712
|
+
background-color: #b33136;
|
|
1713
|
+
border-color: #b33136;
|
|
1714
|
+
}
|
|
1715
|
+
.max-comfirm-content button {
|
|
1716
|
+
height: 26px;
|
|
1717
|
+
border-radius: 6px;
|
|
1718
|
+
}
|
|
1719
|
+
.follow-search-bar {
|
|
1380
1720
|
display: flex;
|
|
1381
1721
|
}
|
|
1382
|
-
.r{
|
|
1722
|
+
.r {
|
|
1383
1723
|
float: right;
|
|
1384
1724
|
}
|
|
1385
|
-
|
|
1386
1725
|
</style>
|
|
1387
1726
|
|
|
1388
1727
|
|