safecheck-client 3.0.33-103 → 3.0.33-106
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/map/checkScreen.vue +886 -886
- package/src/filiale/bayan/android/CheckPlanDown.vue +249 -0
- package/src/filiale/bayan/android/SafecheckOrderV.vue +1 -0
- package/src/filiale/bayan/android/SafecheckUserInfo.vue +28 -0
- package/src/filiale/bayan/android.js +18 -17
- package/src/filiale/bayan/pc/CheckDetail.vue +205 -0
- package/src/filiale/bayan/pc/CheckPlan.vue +59 -0
- package/src/filiale/bayan/pc/CheckPlanAreaList.vue +565 -0
- package/src/filiale/bayan/pc/CheckSearchUser.vue +1065 -0
- package/src/filiale/bayan/pc/DefectListNew.vue +597 -597
- package/src/filiale/bayan/pc/DefectPaperNew.vue +17 -4
- package/src/filiale/bayan/pc/HiddenSituation.vue +256 -0
- package/src/filiale/bayan/pc/NewCheckpaper.vue +1988 -1964
- package/src/filiale/bayan/pc/PaperList.vue +31 -4
- package/src/filiale/bayan/pc/PlanManage.vue +960 -939
- package/src/filiale/bayan/pc/SelectCheckPlan.vue +333 -0
- package/src/filiale/bayan/pc.js +5 -0
- package/src/filiale/tianke/pc/checkScreen.vue +786 -786
- package/src/filiale/wenxi/android/SafecheckUserInfo.vue +672 -672
@@ -332,6 +332,30 @@
|
|
332
332
|
close-on-select>
|
333
333
|
</v-select>
|
334
334
|
</div>
|
335
|
+
<div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
|
336
|
+
<label class="font_normal_body">连续时间</label>
|
337
|
+
<datepicker
|
338
|
+
:value.sync="model.f_last_start"
|
339
|
+
placeholder='连续时间开始' style="width: 60%"
|
340
|
+
:disabled-days-of-week="[]"
|
341
|
+
:format="'yyyy-MM-dd'"
|
342
|
+
:show-rest-button="reset"
|
343
|
+
v-model="model.f_last_start"
|
344
|
+
condition="f_last_check_date> ='{} 00:00:00'">
|
345
|
+
</datepicker>
|
346
|
+
</div>
|
347
|
+
<div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
|
348
|
+
<label class="font_normal_body">连续时间</label>
|
349
|
+
<datepicker
|
350
|
+
:value.sync="model.f_last_end"
|
351
|
+
placeholder='连续时间结束' style="width: 60%"
|
352
|
+
:disabled-days-of-week="[]"
|
353
|
+
:format="'yyyy-MM-dd'"
|
354
|
+
:show-rest-button="reset"
|
355
|
+
v-model="model.f_last_end"
|
356
|
+
condition="f_last_check_date<= '{} 23:59:59'">
|
357
|
+
</datepicker>
|
358
|
+
</div>
|
335
359
|
</div>
|
336
360
|
<modal :show.sync="$parent.$parent.showModal" v-ref:modal backdrop="false">
|
337
361
|
<div slot="modal-header" class="modal-header">
|
@@ -588,14 +612,15 @@ export default {
|
|
588
612
|
label: '请选择',
|
589
613
|
value: ''
|
590
614
|
}, ...this.$appdata.getParam(`工单-` + val)] : [{label: '请选择', value: ''}]
|
615
|
+
}else {
|
616
|
+
this.checkers = this.allCheckers
|
591
617
|
}
|
592
618
|
},
|
593
619
|
teamChange(val) {
|
594
620
|
if (val) {
|
595
|
-
this.checkers = this.$appdata.getParam(val) ? [{
|
596
|
-
|
597
|
-
|
598
|
-
}, ...this.$appdata.getParam(val)] : [{label: '请选择', value: ''}]
|
621
|
+
this.checkers = this.$appdata.getParam(val) ? [...this.$appdata.getParam(val)] : [{label: '请选择', value: ''}]
|
622
|
+
}else {
|
623
|
+
this.checkers = this.allCheckers
|
599
624
|
}
|
600
625
|
},
|
601
626
|
quyuChange(val) {
|
@@ -604,6 +629,8 @@ export default {
|
|
604
629
|
label: '请选择',
|
605
630
|
value: ''
|
606
631
|
}, ...this.$appdata.getParam(val)] : [{label: '请选择', value: ''}]
|
632
|
+
}else {
|
633
|
+
this.checkers = this.allCheckers
|
607
634
|
}
|
608
635
|
},
|
609
636
|
//气表品牌查询
|