apply-clients 7.1.36-yuchuan-32 → 7.1.36-yuchuan-33
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
CHANGED
|
@@ -265,6 +265,19 @@
|
|
|
265
265
|
v-on:keyup.enter="$parent.$parent.search()"
|
|
266
266
|
condition="u.f_construction_name like '%{}%'">
|
|
267
267
|
</div>
|
|
268
|
+
<div class="form-group col-sm-2">
|
|
269
|
+
<label class="font_normal_body"><strong>投保状态:</strong></label>
|
|
270
|
+
<v-select
|
|
271
|
+
v-model="model.f_apply_source"
|
|
272
|
+
placeholder='投保状态'
|
|
273
|
+
condition="u.f_insurance_state= '{}'"
|
|
274
|
+
:value.sync="model.f_insurance_state"
|
|
275
|
+
:options='$parent.$parent.insuranceStste'
|
|
276
|
+
class="select select_list"
|
|
277
|
+
:value-single="true"
|
|
278
|
+
close-on-select >
|
|
279
|
+
</v-select>
|
|
280
|
+
</div>
|
|
268
281
|
</div>
|
|
269
282
|
</div>
|
|
270
283
|
</criteria>
|
|
@@ -284,6 +297,8 @@
|
|
|
284
297
|
<th style="white-space: nowrap;">办理环节</th>
|
|
285
298
|
<th style="white-space: nowrap;">用户分类</th>
|
|
286
299
|
<th style="white-space: nowrap;">地址</th>
|
|
300
|
+
<th style="white-space: nowrap;">户数</th>
|
|
301
|
+
<th style="white-space: nowrap;">投保状态</th>
|
|
287
302
|
<th style="white-space: nowrap;">来源</th>
|
|
288
303
|
<th style="white-space: nowrap;">流程状态</th>
|
|
289
304
|
<th style="white-space: nowrap;">报建日期</th>
|
|
@@ -330,6 +345,12 @@
|
|
|
330
345
|
<td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
331
346
|
<nobr>{{row.f_address}}</nobr>
|
|
332
347
|
</td>
|
|
348
|
+
<td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
349
|
+
<nobr>{{row.f_install_count}}</nobr>
|
|
350
|
+
</td>
|
|
351
|
+
<td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
352
|
+
<nobr>{{row.f_insurance_state}}</nobr>
|
|
353
|
+
</td>
|
|
333
354
|
<td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
334
355
|
<nobr>{{row.f_apply_source}}</nobr>
|
|
335
356
|
</td>
|
|
@@ -365,6 +386,7 @@
|
|
|
365
386
|
sources:[{label: '微信公众号', value: '微信公众号'},{label: '线下发起', value: '线下发起'}],
|
|
366
387
|
filetype:[{label: '已上传图纸', value: 'is not null'}, {label: '未上传图纸', value: 'is null'}],
|
|
367
388
|
UserList:[{label: '全部', value: ''}, ...this.$appdata.getParam('用户分类')?this.$appdata.getParam('用户分类'):[]],
|
|
389
|
+
insuranceStste:[{label: '全部', value: ''}, ...this.$appdata.getParam('投保状态')?this.$appdata.getParam('投保状态'):[]],
|
|
368
390
|
UserType:[{label: '全部', value: ''}, {label: '普通用户', value: '普通用户'}, {label: '煤改用户', value: '煤改用户'}],
|
|
369
391
|
designerPeoples: this.getDesigner(),
|
|
370
392
|
dispatching: [{label: '全部', value: ''}, {label: '施工工队', value: '施工工队'}, {label: '安检维修中心', value: '安检维修中心'}],
|
|
@@ -414,6 +436,7 @@
|
|
|
414
436
|
'f_house_type': ' 新 旧 报 建 ',
|
|
415
437
|
'f_check_operator': '检测单位',
|
|
416
438
|
'f_engineering_operator': '土建单位',
|
|
439
|
+
'f_insurance_state':'投保状态'
|
|
417
440
|
},
|
|
418
441
|
civil: {
|
|
419
442
|
'f_apply_num': '工程编号',
|