safecheck-client 4.0.0-32 → 4.0.0-34
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/NewDefectList/DefectListNew.vue +12 -12
- package/src/components/android/SafecheckOrderV.vue +2 -2
- package/src/components/android/userinfo/SafecheckUserInfo.vue +0 -10
- package/src/components/paper/PaperList.vue +0 -1
- package/src/filiale/xiangyuanzhongai/android/SafecheckDevices.vue +20 -1
- package/src/filiale/{xiangyuan → xiangyuanzhongai}/android/SafecheckUserInfo.vue +3 -3
- package/src/filiale/xiangyuanzhongai/android.js +1 -0
- package/src/filiale/{xiangyuan → xiangyuanzhongai}/pc/DefectListNew.vue +663 -663
- package/src/filiale/{xiangyuan → xiangyuanzhongai}/pc/PaperList.vue +795 -792
- package/src/filiale/xiangyuanzhongai/pc.js +2 -0
- package/src/filiale/yangchunboneng/pc/DefectListNew.vue +5 -5
- package/src/filiale/xiangyuan/android.js +0 -10
- package/src/filiale/xiangyuan/pc.js +0 -13
@@ -466,7 +466,7 @@ export default {
|
|
466
466
|
this.solveModal.preData.repairedImg = ''
|
467
467
|
this.solveModal.preData.repairedImg1 = ''
|
468
468
|
this.solveModal.preData.repairedImg2 = ''
|
469
|
-
this.solveModal.preData.defectImg = row.f_path?'/
|
469
|
+
this.solveModal.preData.defectImg = row.f_path?'/rs/image/file/' + row.f_path:null
|
470
470
|
this.solveModal.uploadData.id = row.id
|
471
471
|
this.solveModal.preData.type = type
|
472
472
|
this.solveModal.preData.state = row.f_repaire_state
|
@@ -477,10 +477,10 @@ export default {
|
|
477
477
|
this.solveModal.preData.repairedImg = row.f_repair_path
|
478
478
|
this.solveModal.preData.repairedImg1 = row.f_repair1_path
|
479
479
|
} else {
|
480
|
-
this.solveModal.preData.f_repair_path = row.f_repair_path? '/
|
481
|
-
this.solveModal.preData.repairedImg = row.f_repair_path? '/
|
482
|
-
this.solveModal.preData.repairedImg1 = row.f_other_dealpath1? '/
|
483
|
-
this.solveModal.preData.repairedImg2 = row.f_other_dealpath2? '/
|
480
|
+
this.solveModal.preData.f_repair_path = row.f_repair_path? '/rs/image/file/' + row.f_repair_path:null
|
481
|
+
this.solveModal.preData.repairedImg = row.f_repair_path? '/rs/image/file/' + row.f_repair_path:null
|
482
|
+
this.solveModal.preData.repairedImg1 = row.f_other_dealpath1? '/rs/image/file/' + row.f_other_dealpath1:null
|
483
|
+
this.solveModal.preData.repairedImg2 = row.f_other_dealpath2? '/rs/image/file/' + row.f_other_dealpath2:null
|
484
484
|
}
|
485
485
|
if (type === '现场已处理') {
|
486
486
|
this.solveModal.uploadData.f_repairman = this.check.f_checker_name
|
@@ -1,13 +0,0 @@
|
|
1
|
-
// 分公司特殊组件页面注册
|
2
|
-
import Vue from "vue";
|
3
|
-
|
4
|
-
//手机特殊目录注册到该文件中
|
5
|
-
let specialComp = {
|
6
|
-
'paper-main': (resolve) => { require(['./pc/PaperList'], resolve) },
|
7
|
-
"safe-defect-list-new":(resolve) => { require(['./pc/DefectListNew.vue'], resolve) }
|
8
|
-
}
|
9
|
-
exports.specialComp = specialComp
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|