safecheck-client 3.0.34-35 → 3.0.34-39

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 (32) hide show
  1. package/package.json +1 -1
  2. package/src/App.vue +31 -31
  3. package/src/components/android/QRCode/QRCodePage.vue +208 -208
  4. package/src/components/android/examples/SafeListExamples.vue +96 -96
  5. package/src/components/android/examples/UserExamples.vue +126 -126
  6. package/src/filiale/bayan/android/SafecheckOrderV.vue +49 -26
  7. package/src/filiale/huaran/android/SafecheckOrderV.vue +2803 -2803
  8. package/src/filiale/huaran/android.js +12 -12
  9. package/src/filiale/huaran/pc/CheckBook.vue +313 -313
  10. package/src/filiale/huaran/pc/CheckBookAll.vue +69 -69
  11. package/src/filiale/huaran/pc/CheckBookArea.vue +170 -170
  12. package/src/filiale/huaran/pc/CheckBookCompany.vue +166 -166
  13. package/src/filiale/huaran/pc/CheckBookDetails.vue +196 -196
  14. package/src/filiale/huaran/pc/CheckBookEntry.vue +61 -61
  15. package/src/filiale/huaran/pc/CheckBookList.vue +386 -386
  16. package/src/filiale/huaran/pc/CheckBookSearchArea.vue +564 -564
  17. package/src/filiale/huaran/pc/CheckBookSearchUnit.vue +229 -229
  18. package/src/filiale/huaran/pc/CheckBookSearchUser.vue +604 -604
  19. package/src/filiale/huaran/pc/CheckBookUser.vue +112 -112
  20. package/src/filiale/huaran/pc/PaperList.vue +822 -822
  21. package/src/filiale/huaran/pc/PlanManage.vue +887 -887
  22. package/src/filiale/huaran/pc/checkPlanList.vue +419 -419
  23. package/src/filiale/huaran/pc/checkUserList.vue +867 -867
  24. package/src/filiale/huaran/pc.js +27 -27
  25. package/src/filiale/ruihua/android/SafecheckOrderV.vue +2747 -0
  26. package/src/filiale/ruihua/android/SafecheckUserInfo.vue +804 -0
  27. package/src/filiale/ruihua/android.js +11 -0
  28. package/src/filiale/weinan/android/SafecheckDevices.vue +1295 -1295
  29. package/src/filiale/weinan/android/SafecheckOrderV.vue +3335 -3335
  30. package/src/filiale/weinan/pc/DeviceChange.vue +1088 -1088
  31. package/src/filiale/weinan/pc.js +47 -47
  32. package/src/main.js +33 -33
@@ -0,0 +1,11 @@
1
+ // 分公司特殊组件页面注册
2
+ import Vue from "vue";
3
+
4
+ // 手机特殊目录注册到该文件中
5
+ let specialComp = {
6
+ 'safecheck-userinfo': (resolve) => { require(['./android/SafecheckUserInfo'], resolve) },
7
+ 'safecheck-order-v': (resolve) => { require(['./android/SafecheckOrderV'], resolve) },
8
+ }
9
+
10
+ exports.specialComp = specialComp
11
+