safecheck-client 3.0.34-79 → 3.0.34-80
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/components/android/CurrentCreateYy.vue +1051 -1051
- package/src/components/android/examples/SafeListExamples.vue +9 -9
- package/src/components/android/examples/ViewDetailsExamples.vue +0 -16
- package/src/components/pc/SafeVisitInfo.vue +261 -261
- package/src/components/rongcheng/CheckSearchUser.vue +936 -936
- package/src/filiale/siyang/android/AppCheckPlan.vue +246 -0
- package/src/filiale/siyang/android/CurrentCreate.vue +1051 -1051
- package/src/filiale/siyang/android.js +14 -13
- package/src/filiale/siyang/pc/CheckBookList.vue +396 -0
- package/src/filiale/siyang/pc/CheckBookSearchArea.vue +667 -667
- package/src/filiale/siyang/pc.js +1 -0
- package/src/filiale/yangchunboneng/android/SafecheckDevices.vue +9 -5
- package/src/filiale/yangchunboneng/android/SafecheckOrderV.vue +2865 -2845
- package/src/filiale/yangchunboneng/pc/CheckBookSearchUser.vue +659 -659
- package/src/filiale/yangchunboneng/pc/PaperDefectMain.vue +1046 -1046
- package/src/main.js +33 -33
- package/src/safecheck-android.js +306 -306
- package/src/safecheck.js +898 -898
package/src/filiale/siyang/pc.js
CHANGED
@@ -13,6 +13,7 @@ let specialComp = {
|
|
13
13
|
'new-check-paper':(resolve) => {require(['./pc/NewCheckpaper'], resolve)},
|
14
14
|
'check-user-list':(resolve) => { require(['./pc/checkUserList'], resolve) },
|
15
15
|
'paper-defect-main':(resolve) => { require(['./pc/PaperDefectMain'], resolve) },
|
16
|
+
'check-book-list':(resolve) => { require(['./pc/CheckBookList'], resolve) },
|
16
17
|
}
|
17
18
|
exports.specialComp = specialComp
|
18
19
|
|
@@ -659,15 +659,15 @@ export default {
|
|
659
659
|
if (options[i].value == val) {
|
660
660
|
// 如果有隐患,拍图片
|
661
661
|
if (options[i].isdefect) {
|
662
|
-
let value = '未处理'
|
663
|
-
if (this.device.device == '热水器' || this.device.device == '燃具连接管' || this.device.device == '灶具'){
|
664
|
-
|
665
|
-
}
|
662
|
+
// let value = '未处理'
|
663
|
+
// if (this.device.device == '热水器' || this.device.device == '燃具连接管' || this.device.device == '灶具'){
|
664
|
+
// value = '自行处理'
|
665
|
+
// }
|
666
666
|
this.f_items[n].f_is_defect = true
|
667
667
|
this.f_items[n].f_defect_level = options[i].level
|
668
668
|
this.f_items[n].f_path = Vue.nopic
|
669
669
|
this.f_items[n].f_live_dispose = '否'
|
670
|
-
this.f_items[n].f_deal_dispose = value
|
670
|
+
// this.f_items[n].f_deal_dispose = value
|
671
671
|
this.f_items[n].tooltip = options[i].tooltip
|
672
672
|
//tag)
|
673
673
|
return
|
@@ -1022,6 +1022,10 @@ export default {
|
|
1022
1022
|
checkmust: this.config[this.device.device].items[item].checkmust,
|
1023
1023
|
f_item_value: f_item_value,
|
1024
1024
|
f_is_defect: '',
|
1025
|
+
dispatchType: this.config[this.device.device].items[item].dispatchType ? this.config[this.device.device].items[item].dispatchType : '',
|
1026
|
+
f_repairman: this.config[this.device.device].items[item].f_repairman ? this.config[this.device.device].items[item].f_repairman : '',
|
1027
|
+
f_meetunit: this.config[this.device.device].items[item].f_meetunit ? this.config[this.device.device].items[item].f_meetunit : '',
|
1028
|
+
f_reciever: this.config[this.device.device].items[item].f_reciever ? this.config[this.device.device].items[item].f_reciever : '',
|
1025
1029
|
f_deal_dispose: this.config[this.device.device].items[item].dealDispose ? this.config[this.device.device].items[item].dealDispose : '',
|
1026
1030
|
multiple:this.config[this.device.device].items[item].multiple == true?this.config[this.device.device].items[item].multiple:false,
|
1027
1031
|
isshow:this.config[this.device.device].items[item].isshow == false?this.config[this.device.device].items[item].isshow:true,
|