safecheck-client 3.0.33-2 → 3.0.33-22

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.
Files changed (33) hide show
  1. package/package.json +133 -133
  2. package/src/App.vue +31 -31
  3. package/src/components/paper/PaperList.vue +5 -4
  4. package/src/components/planmanage/checkUserList.vue +34 -2
  5. package/src/components/report/CheckPlanCountChartArea.vue +5 -0
  6. package/src/filiale/bayan/android/AddPlanItem.vue +5 -1
  7. package/src/filiale/bayan/android/SafecheckOrderV.vue +3 -0
  8. package/src/filiale/dexin/android/SafecheckDevices.vue +1 -1
  9. package/src/filiale/dexin/android/WebMeterOpen.vue +1 -1
  10. package/src/filiale/dexin/android/WebMeterOpenEdit.vue +25 -37
  11. package/src/filiale/fugou/pc/AddToCheckBook.vue +56 -119
  12. package/src/filiale/fugou/pc/CheckBookEntry.vue +47 -19
  13. package/src/filiale/fugou/pc/CheckBookSearchUser.vue +718 -575
  14. package/src/filiale/fugou/pc/PlanManage.vue +17 -1
  15. package/src/filiale/fugou/pc/checkUserList.vue +222 -42
  16. package/src/filiale/tongchuan/pc/checkUserList.vue +2 -2
  17. package/src/filiale/weinan/android/SafecheckDevices.vue +1082 -1025
  18. package/src/filiale/weinan/android/SafecheckOrderV.vue +71 -26
  19. package/src/filiale/wensu/pc/CheckSearchUser.vue +2 -0
  20. package/src/filiale/wensu/pc/DefectPaperNew.vue +1 -1
  21. package/src/filiale/wensu/pc/PlanManage.vue +831 -831
  22. package/src/filiale/wensu/pc/checkUserList.vue +8 -8
  23. package/src/filiale/wensu/pc.js +20 -20
  24. package/src/filiale/wenxi/android/SafecheckUserInfo.vue +1 -1
  25. package/src/filiale/wuhai/pc/PaperList.vue +785 -0
  26. package/src/filiale/wuhai/pc.js +1 -0
  27. package/src/filiale/yongzhou/pc/DefectPaperNew.vue +1105 -0
  28. package/src/filiale/yongzhou/pc/safeCheckDetail.vue +298 -0
  29. package/src/filiale/yongzhou/pc/safeCheckExamine.vue +277 -0
  30. package/src/filiale/yongzhou/pc/safeDetail.vue +27 -6
  31. package/src/filiale/yongzhou/pc.js +1 -0
  32. package/src/filiale/yunchengminsheng/pc/checkUserList.vue +18 -1
  33. package/src/main.js +33 -33
@@ -8,6 +8,7 @@ let specialComp = {
8
8
 
9
9
  'check-user-list': (resolve) => { require(['./pc/checkUserList'], resolve) },
10
10
  'check-search-user': (resolve) => { require(['./pc/CheckSearchUser'], resolve) },
11
+ 'paper-main': (resolve) => { require(['./pc/PaperList'], resolve) }
11
12
  }
12
13
  exports.specialComp = specialComp
13
14