safecheck-client 4.0.1-69 → 4.0.1-70
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
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "safecheck-client",
|
3
3
|
"//": "主分支版本别乱升,测试包的版本直接发包(建议使用1.XX.XX-XXX格式作为测试包,不要频繁升级第三位版本号),别提交版本号。切了分支切记把主分支版本升了,保证主分支始终是最高版本!!!!!",
|
4
|
-
"version": "4.0.1-
|
4
|
+
"version": "4.0.1-70",
|
5
5
|
"description": "安检模块 前端组件",
|
6
6
|
"author": "丁新 <417755458@qq.com>",
|
7
7
|
"license": "ISC",
|
@@ -291,7 +291,7 @@
|
|
291
291
|
class="select_list select"
|
292
292
|
placeholder='回访状态' style="width: 60%"
|
293
293
|
v-model='model.f_is_visit'
|
294
|
-
:value.sync="
|
294
|
+
:value.sync="model.f_is_visit"
|
295
295
|
:options='$parent.$parent.is_visit'
|
296
296
|
:value-single="true"
|
297
297
|
close-on-select clear-button></v-select>
|
@@ -320,6 +320,11 @@
|
|
320
320
|
condition="f_visit_date <= '{} 23:59:59' and f_is_visit ='已回访'">
|
321
321
|
</datepicker>
|
322
322
|
</div>
|
323
|
+
<div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow">
|
324
|
+
<label class="font_normal_body">回访人</label>
|
325
|
+
<input type="text" class="input_search" v-model="model.f_visit_people"
|
326
|
+
style="width: 60%" placeholder="回访人" condition="f_visit_people like '%{}%'">
|
327
|
+
</div>
|
323
328
|
</div>
|
324
329
|
<modal :show.sync="$parent.$parent.showModal" v-ref:modal backdrop="false">
|
325
330
|
<div slot="modal-header" class="modal-header">
|
@@ -388,6 +393,15 @@
|
|
388
393
|
<th>
|
389
394
|
<nobr>开户时间</nobr>
|
390
395
|
</th>
|
396
|
+
<th>
|
397
|
+
<nobr>回访状态</nobr>
|
398
|
+
</th>
|
399
|
+
<th>
|
400
|
+
<nobr>回访时间</nobr>
|
401
|
+
</th>
|
402
|
+
<th>
|
403
|
+
<nobr>回访人</nobr>
|
404
|
+
</th>
|
391
405
|
<th v-if="$parent.$parent.$parent.safeAudit">
|
392
406
|
<nobr>审核人</nobr>
|
393
407
|
</th>
|
@@ -432,6 +446,9 @@
|
|
432
446
|
<td style="text-align: center">{{ row.f_checker_name }}</td>
|
433
447
|
<td style="text-align: center">{{ row.f_repair_approved_note }}</td>
|
434
448
|
<td style="text-align: center">{{ row.f_gas_date }}</td>
|
449
|
+
<td style="text-align: center">{{ row.f_is_visit }}</td>
|
450
|
+
<td style="text-align: center">{{ row.f_visit_date }}</td>
|
451
|
+
<td style="text-align: center">{{ row.f_visit_people }}</td>
|
435
452
|
<td style="text-align: center" v-show="$parent.$parent.$parent.safeAudit">{{ row.f_approved_by }}</td>
|
436
453
|
<td style="text-align: center" v-show="$parent.$parent.$parent.safeAudit">{{ row.f_approvedstart_time }}</td>
|
437
454
|
<td style="text-align: center" v-show="$parent.$parent.$parent.safeAudit">{{ row.f_approved_time }}</td>
|
@@ -810,6 +827,9 @@ export default {
|
|
810
827
|
'f_safecheck_type':'安检类型',
|
811
828
|
'f_repair_approved_note': '备注',
|
812
829
|
'f_gas_date': '开户时间',
|
830
|
+
'f_is_visit': '回访状态',
|
831
|
+
'f_visit_date': '回访时间',
|
832
|
+
'f_visit_people': '回访人',
|
813
833
|
'f_approved_by': '审核人',
|
814
834
|
'f_approved': '审核状态',
|
815
835
|
'f_approved_time': '审核时间'
|
@@ -1119,7 +1139,7 @@ export default {
|
|
1119
1139
|
}
|
1120
1140
|
if (args.model.f_is_visit){
|
1121
1141
|
if (args.model.f_is_visit == '已回访'){
|
1122
|
-
args.condition += ` and f_is_visit ='已回访'`
|
1142
|
+
args.condition += ` and f_is_visit = '已回访'`
|
1123
1143
|
}else {
|
1124
1144
|
args.condition += ` and f_is_visit is null`
|
1125
1145
|
}
|