safecheck-client 4.0.1-4 → 4.0.1-41
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 +5 -5
- package/src/assets//350/255/246/345/221/212 (3).png +0 -0
- package/src/assets//350/255/246/345/221/212 (4).png +0 -0
- package/src/assets//350/255/246/345/221/212 (5).png +0 -0
- package/src/components/android/SwitchValve.vue +1 -1
- package/src/components/checkplan/CheckDetail.vue +1 -1
- package/src/components/map/SecurityCheckCoordinates.vue +348 -0
- package/src/components/pc/CheckBookUser.vue +337 -333
- package/src/filiale/jinhong/android/CurrentCreate.vue +41 -2
- package/src/filiale/jinhong/pc/CheckBookList.vue +10 -7
- package/src/filiale/jinhong/pc/DefectPaperNew.vue +10 -10
- package/src/filiale/jinhong/pc/checkUserList.vue +31 -8
- package/src/filiale/libo/android/PaperFeedback.vue +1579 -0
- package/src/filiale/libo/android/PhoneUpUserinfo.vue +1249 -0
- package/src/filiale/libo/android/SafecheckOrderV.vue +2302 -0
- package/src/filiale/libo/android.js +14 -0
- package/src/filiale/libo/pc/NewCheckpaper.vue +1987 -0
- package/src/filiale/libo/pc.js +12 -0
- package/src/filiale/meihekou/android/MeterReading.vue +9 -5
- package/src/filiale/meihekou/android/PhoneUpUserinfo.vue +3 -2
- package/src/filiale/meihekou/android/SafecheckDevices.vue +5 -5
- package/src/filiale/meihekou/android/SafecheckOrderV.vue +323 -310
- package/src/filiale/meihekou/pc/NewCheckpaper.vue +2027 -2027
- package/src/filiale/meihekou/pc/NewCheckpaperNew.vue +2050 -0
- package/src/filiale/meihekou/pc/PaperList.vue +810 -0
- package/src/filiale/meihekou/pc.js +15 -13
- package/src/filiale/minsheng/android/SwitchValve.vue +1 -1
- package/src/filiale/qianneng/android/SwitchValve.vue +1 -1
- package/src/filiale/qingjian/pc/NewCheckpaper.vue +1 -0
- package/src/filiale/qingjian/pc/checkUserList.vue +35 -0
- package/src/filiale/taiyuan/android/CurrentCreate.vue +1016 -0
- package/src/filiale/taiyuan/android/PhoneUpUserinfo.vue +1259 -0
- package/src/filiale/taiyuan/android/SafecheckOrderV.vue +2341 -0
- package/src/filiale/taiyuan/android/SafecheckUserInfo.vue +776 -0
- package/src/filiale/taiyuan/android.js +13 -0
- package/src/filiale/taiyuan/pc/DefectDeal.vue +1033 -0
- package/src/filiale/taiyuan/pc/NewCheckpaper.vue +1976 -0
- package/src/filiale/taiyuan/pc/PlanManage.vue +891 -0
- package/src/filiale/taiyuan/pc/checkUserList.vue +798 -0
- package/src/filiale/taiyuan/pc.js +15 -0
- package/src/filiale/tongchuan/android/SwitchValve.vue +1 -1
- package/src/filiale/xinkang/android/AddPlanItem.vue +1 -1
- package/src/filiale/xinkang/android/SafecheckDevices.vue +29 -7
- package/src/filiale/xinkang/android/SafecheckOrderV.vue +21 -44
- package/src/filiale/xinkang/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/xinkang/pc/NewCheckpaper.vue +1474 -1498
- package/src/filiale/xinkang/pc/PaperList.vue +596 -603
- package/src/filiale/yuansheng/android/SwitchValve.vue +1 -1
- package/src/filiale/yunchengminsheng/android/PaperFeedback.vue +1030 -1030
- package/src/filiale/yunchengminsheng/android/SafecheckDevices.vue +4 -4
- package/src/filiale/yunchengminsheng/pc/PaperList.vue +811 -0
- package/src/filiale/yunchengminsheng/pc.js +1 -0
- package/src/safecheck-android.js +4 -0
- package/src/safecheck.js +3 -0
@@ -6,6 +6,7 @@ let specialComp = {
|
|
6
6
|
// 安检汇总-列表
|
7
7
|
'new-check-paper': (resolve) => { require(['./pc/NewCheckpaper'], resolve) },
|
8
8
|
'check-user-list': (resolve) => { require(['./pc/checkUserList'], resolve) },
|
9
|
+
'paper-main': (resolve) => { require(['./pc/PaperList'], resolve) },
|
9
10
|
}
|
10
11
|
exports.specialComp = specialComp
|
11
12
|
|
package/src/safecheck-android.js
CHANGED
@@ -251,6 +251,10 @@ export default function (filiale) {
|
|
251
251
|
require(['./components/android/PhoneSellInfo'], resolve)
|
252
252
|
})
|
253
253
|
|
254
|
+
Vue.component('safe-phone-sell-info', (resolve) => {
|
255
|
+
require(['./components/android/PhoneSellInfo'], resolve)
|
256
|
+
})
|
257
|
+
|
254
258
|
//中盛点火信息
|
255
259
|
// Vue.component('ignition-information', (resolve) => { require(['./components/android/IgnitionInformation'], resolve) })
|
256
260
|
// Vue.component('buy-records', (resolve) => { require(['./components/android/BuyRecords'], resolve) })
|
package/src/safecheck.js
CHANGED
@@ -769,6 +769,9 @@ export default function (filiale) {
|
|
769
769
|
Vue.component('person-track', (resolve) => {
|
770
770
|
require(['./components/map/PersonTrack'], resolve)
|
771
771
|
})
|
772
|
+
Vue.component('security-check-coordinates', (resolve) => {
|
773
|
+
require(['./components/map/SecurityCheckCoordinates.vue'], resolve)
|
774
|
+
})
|
772
775
|
// 轨迹地图展示(新)
|
773
776
|
Vue.component('a-map-trajectory-new', (resolve) => {
|
774
777
|
require(['./components/map/AMapTrajectoryNew.vue'], resolve)
|