safecheck-client 3.0.34-2 → 3.0.34-20
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/android/AndroidDefectDeal.vue +634 -633
- package/src/components/android/AreaPlan.vue +1 -7
- package/src/components/android/PaperFeedback.vue +1 -1
- package/src/components/android/PaperFeedbackTemp.vue +1 -1
- package/src/components/android/SafePlanItem.vue +509 -509
- package/src/components/android/SafecheckDevices.vue +2 -2
- package/src/components/android/SafecheckDevicesTemp.vue +1 -1
- package/src/components/android/userinfo/SafecheckUserInfo.vue +1 -1
- package/src/components/safecheckNew/android/SafecheckOrderV.vue +2731 -2731
- package/src/filiale/baiyin/android/SafecheckOrderV.vue +2798 -0
- package/src/filiale/baiyin/android.js +11 -10
- package/src/filiale/bayan/android/PaperFeedback.vue +1 -1
- package/src/filiale/bayan/android/SafecheckDevices.vue +1 -1
- package/src/filiale/bayan/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/dexin/android/SafecheckDevices.vue +1 -1
- package/src/filiale/hanzhong/android/PaperFeedback.vue +1 -1
- package/src/filiale/hanzhong/android/SafecheckDevices.vue +1 -1
- package/src/filiale/hanzhong/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/jiaxian/android/AddPlanItem.vue +447 -0
- package/src/filiale/jiaxian/android/SafecheckDevices.vue +5 -5
- package/src/filiale/jiaxian/android/SafecheckOrderV.vue +2811 -0
- package/src/filiale/jiaxian/android/SafecheckUserInfo.vue +784 -0
- package/src/filiale/jiaxian/android.js +3 -0
- package/src/filiale/jingyang/android/PaperFeedback.vue +1 -1
- package/src/filiale/jingyang/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/pingxiang/android/PaperFeedback.vue +1 -1
- package/src/filiale/qingjian/android/SafecheckDevices.vue +1 -1
- package/src/filiale/qingjian/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/rongchuang/android/SafecheckOrderV.vue +2696 -2696
- package/src/filiale/shiquan/android/SafecheckDevices.vue +1 -1
- package/src/filiale/siyang/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/siyang/pc/NewCheckpaper.vue +1938 -1938
- package/src/filiale/siyang/pc/checkUserList.vue +786 -786
- package/src/filiale/siyang/pc.js +16 -16
- package/src/filiale/weinan/android/SafecheckDevices.vue +12 -0
- package/src/filiale/weinan/android/SafecheckOrderV.vue +3345 -3335
- package/src/filiale/weinan/pc/DefectPaperNew.vue +1096 -1065
- package/src/filiale/wuan/android/SafecheckOrderV.vue +4 -1
- package/src/filiale/wuan/android/SafecheckUserInfo.vue +6 -5
- package/src/filiale/yangchunboneng/android/CurrentCreate.vue +8 -11
- package/src/filiale/yangchunboneng/android/DailyworkloadQuery.vue +8 -13
- package/src/filiale/yangchunboneng/android/PaperFeedback.vue +1 -1
- package/src/filiale/yangchunboneng/android/SafecheckDevices.vue +2 -2
- package/src/filiale/yangchunboneng/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/yangchunboneng/android/safeHistoryLook.vue +8 -13
- package/src/filiale/yangchunboneng/pc/CheckBookUser.vue +269 -269
- package/src/filiale/yangchunboneng/pc/DefectPaperNew.vue +1128 -1128
- package/src/filiale/yangchunboneng/pc/PaperDefectMain.vue +972 -972
- package/src/filiale/yangchunboneng/pc/PaperList.vue +773 -773
- package/src/filiale/yongzhou/android/PaperFeedback.vue +1 -1
- package/src/filiale/yongzhou/android/SafecheckDevices.vue +1 -1
- package/src/filiale/yongzhou/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/yuansheng/android/SwitchValve.vue +322 -322
- package/src/filiale/yuansheng/android.js +17 -17
- package/src/filiale/yunchengminsheng/android/PaperFeedback.vue +1 -1
- package/src/filiale/yunchengminsheng/android/SafecheckDevices.vue +1 -1
- package/src/filiale/yunchengminsheng/android/SafecheckUserInfo.vue +1 -1
- package/src/main.js +1 -1
@@ -1,17 +1,17 @@
|
|
1
|
-
// 分公司特殊组件页面注册
|
2
|
-
import Vue from "vue";
|
3
|
-
|
4
|
-
// 手机特殊目录注册到该文件中
|
5
|
-
let specialComp = {
|
6
|
-
'safecheck-order-v': (resolve) => { require(['./android/SafecheckOrderV'], resolve) },
|
7
|
-
'switch-valve': (resolve) => { require(['./android/SwitchValve'], resolve) },
|
8
|
-
'paper-feedback' : (resolve) => { require(['./android/PaperFeedback'], resolve) },
|
9
|
-
'paper-state': (resolve) => { require(['./android/PaperState.vue'], resolve) },
|
10
|
-
'safecheck-devices': (resolve) => { require(['./android/SafecheckDevices.vue'], resolve) },
|
11
|
-
'PhoneUpUserinfo': (resolve) => { require(['./android/PhoneUpUserinfo.vue'], resolve) },
|
12
|
-
'android-defect-deal': (resolve) => { require(['./android/AndroidDefectDeal'], resolve) },
|
13
|
-
'safecheck-userinfo': (resolve) => { require(['./android/SafecheckUserInfo.vue'], resolve) }
|
14
|
-
}
|
15
|
-
|
16
|
-
exports.specialComp = specialComp
|
17
|
-
|
1
|
+
// 分公司特殊组件页面注册
|
2
|
+
import Vue from "vue";
|
3
|
+
|
4
|
+
// 手机特殊目录注册到该文件中
|
5
|
+
let specialComp = {
|
6
|
+
'safecheck-order-v': (resolve) => { require(['./android/SafecheckOrderV'], resolve) },
|
7
|
+
'switch-valve': (resolve) => { require(['./android/SwitchValve'], resolve) },
|
8
|
+
'paper-feedback' : (resolve) => { require(['./android/PaperFeedback'], resolve) },
|
9
|
+
'paper-state': (resolve) => { require(['./android/PaperState.vue'], resolve) },
|
10
|
+
'safecheck-devices': (resolve) => { require(['./android/SafecheckDevices.vue'], resolve) },
|
11
|
+
'PhoneUpUserinfo': (resolve) => { require(['./android/PhoneUpUserinfo.vue'], resolve) },
|
12
|
+
'android-defect-deal': (resolve) => { require(['./android/AndroidDefectDeal'], resolve) },
|
13
|
+
'safecheck-userinfo': (resolve) => { require(['./android/SafecheckUserInfo.vue'], resolve) }
|
14
|
+
}
|
15
|
+
|
16
|
+
exports.specialComp = specialComp
|
17
|
+
|
@@ -626,7 +626,6 @@
|
|
626
626
|
HostApp.__this__ = null
|
627
627
|
},
|
628
628
|
takePic(prop, title, index) {
|
629
|
-
const obj = HostApp.getGpsDetailAddress()
|
630
629
|
HostApp.__callback__ = this.cameraCallBack
|
631
630
|
HostApp.__this__ = this
|
632
631
|
////tag
|
@@ -647,6 +646,7 @@
|
|
647
646
|
}
|
648
647
|
let jingweidu = ''
|
649
648
|
if (this.$parent.$parent.is_has_jingweidu == 'true'){
|
649
|
+
const obj = HostApp.getGpsDetailAddress()
|
650
650
|
jingweidu = '\t经度:' + obj.longitude+ '\t纬度:' + obj.latitude
|
651
651
|
}
|
652
652
|
HostApp._open_a_page({
|
@@ -435,7 +435,6 @@ export default {
|
|
435
435
|
if (this.role == 'androidview') {
|
436
436
|
return
|
437
437
|
}
|
438
|
-
const obj = HostApp.getGpsDetailAddress()
|
439
438
|
HostApp.__callback__ = this.cameraCallBack
|
440
439
|
HostApp.__this__ = this
|
441
440
|
//tag
|
@@ -455,6 +454,7 @@ export default {
|
|
455
454
|
}
|
456
455
|
let jingweidu = ''
|
457
456
|
if (this.$parent.$parent.is_has_jingweidu == 'true'){
|
457
|
+
const obj = HostApp.getGpsDetailAddress()
|
458
458
|
jingweidu = '\t经度:' + obj.longitude+ '\t纬度:' + obj.latitude
|
459
459
|
}
|
460
460
|
//tag
|
@@ -420,7 +420,6 @@
|
|
420
420
|
HostApp.__this__ = null
|
421
421
|
},
|
422
422
|
takePic (type ,prop, title) {
|
423
|
-
const obj = HostApp.getGpsDetailAddress()
|
424
423
|
HostApp.__callback__ = this.cameraCallBack
|
425
424
|
HostApp.__this__ = this
|
426
425
|
//tag
|
@@ -450,6 +449,7 @@
|
|
450
449
|
}
|
451
450
|
let jingweidu = ''
|
452
451
|
if (this.$parent.$parent.is_has_jingweidu == 'true'){
|
452
|
+
const obj = HostApp.getGpsDetailAddress()
|
453
453
|
jingweidu = '\t经度:' + obj.longitude+ '\t纬度:' + obj.latitude
|
454
454
|
}
|
455
455
|
HostApp._open_a_page({
|
package/src/main.js
CHANGED