apply-clients 3.5.4-69 → 3.5.4-71
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/build/dev-server.js +7 -15
- package/package.json +1 -1
- package/src/App.vue +25 -25
- package/src/components/product/Material/MaterialDetailed.vue +268 -268
- package/src/components/product/Supervisory/SupervisoryControl.vue +141 -141
- package/src/components/product/Supervisory/SupervisoryList.vue +452 -452
- package/src/filiale/fugou/android/AppAddMaterialScience.vue +442 -442
- package/src/filiale/fugou/android/AppChargeManagement.vue +739 -739
- package/src/filiale/fugou/android/AppDevicesManagement.vue +519 -519
- package/src/filiale/fugou/android.js +14 -14
- package/src/filiale/fugou/pc/ExplorationSelect.vue +515 -525
- package/src/filiale/fugou/pc/InstallationDetails.vue +647 -647
- package/src/filiale/fugou/pc/ServiceControl.vue +1702 -1701
- package/src/filiale/fugou/pc/addMaterialScience.vue +482 -482
- package/src/filiale/fugou/pc/devicesManagement.vue +483 -483
- package/src/filiale/fugou/pc.js +10 -11
- package/src/filiale/gongyi/android/AppAddMaterialScience.vue +493 -493
- package/src/filiale/qianneng/android/AppChargeManagement.vue +686 -686
- package/src/filiale/qianneng/android.js +15 -15
- package/src/filiale/qianneng/pc/Applydetail.vue +378 -378
- package/src/filiale/qianneng/pc/InstallFunction.vue +188 -188
- package/src/filiale/yangchunboneng/android/AppChargeManagement.vue +526 -526
- package/src/filiale/yangchunboneng/android/AppDevicesManagement.vue +639 -639
- package/src/filiale/yangchunboneng/android/AppExplorationUser.vue +518 -518
- package/src/filiale/yangchunboneng/android/AppInstallationMaterial.vue +1083 -1081
- package/src/filiale/yangchunboneng/android/AppServiceControl.vue +1681 -1681
- package/src/filiale/yangchunboneng/android/AppSuperServiceControl.vue +1524 -1524
- package/src/filiale/yangchunboneng/android/AppUpload.vue +205 -205
- package/src/filiale/yangchunboneng/android/MaterIialOne.vue +156 -156
- package/src/filiale/yangchunboneng/android.js +20 -20
- package/src/filiale/yangchunboneng/pc/ApplyUpload.vue +392 -392
- package/src/filiale/yangchunboneng/pc/ExplorationSelect.vue +548 -548
- package/src/filiale/yangchunboneng/pc/ExplorationUser.vue +191 -191
- package/src/filiale/yangchunboneng/pc/InstallInfoSelect.vue +365 -365
- package/src/filiale/yangchunboneng/pc/ServiceControl.vue +2075 -2075
- package/src/filiale/yangchunboneng/pc/SupervisoryControlNew.vue +142 -142
- package/src/filiale/yangchunboneng/pc/SupervisoryList.vue +590 -590
- package/src/filiale/yangchunboneng/pc/SupervisoryListNew.vue +628 -628
- package/src/filiale/yangchunboneng/pc/SupervisoryServiceControl.vue +902 -902
- package/src/filiale/yangchunboneng/pc/SupervisoryServiceControlNew.vue +901 -901
- package/src/filiale/yangchunboneng/pc/SupervisoryServiceView.vue +1117 -1117
- package/src/filiale/yangchunboneng/pc/chargeManagement.vue +1058 -1058
- package/src/filiale/yangchunboneng/pc.js +24 -24
- package/src/main.js +3 -3
- package/src/filiale/fugou/pc/ServiceView.vue +0 -941
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import Vue from 'vue'
|
|
2
|
-
|
|
3
|
-
let specialComp = {
|
|
4
|
-
'app-add-material-science': (resolve) => { require(['./android/AppAddMaterialScience'], resolve) },
|
|
5
|
-
'app-exploration-user': (resolve) => { require(['./android/AppExplorationUser'], resolve) },
|
|
6
|
-
'app-service-view': (resolve) => { require(['./android/AppServiceView'], resolve) },
|
|
7
|
-
'app-service-control': (resolve) => { require(['./android/AppServiceControl'], resolve) },
|
|
8
|
-
'app-sign': (resolve) => { require(['./android/AppSign'], resolve) },
|
|
9
|
-
'app-take-pic': (resolve) => { require(['./android/AppTakePic'], resolve) },
|
|
10
|
-
'app-installation-details': (resolve) => { require(['./android/AppInstallationDetails'], resolve) },
|
|
11
|
-
'app-apply-devices-management': (resolve) => { require(['./android/AppDevicesManagement'], resolve) },
|
|
12
|
-
'app-charge-management': (resolve) => { require(['./android/AppChargeManagement'], resolve) }
|
|
13
|
-
|
|
14
|
-
}
|
|
15
|
-
exports.specialComp = specialComp
|
|
1
|
+
import Vue from 'vue'
|
|
2
|
+
|
|
3
|
+
let specialComp = {
|
|
4
|
+
'app-add-material-science': (resolve) => { require(['./android/AppAddMaterialScience'], resolve) },
|
|
5
|
+
'app-exploration-user': (resolve) => { require(['./android/AppExplorationUser'], resolve) },
|
|
6
|
+
'app-service-view': (resolve) => { require(['./android/AppServiceView'], resolve) },
|
|
7
|
+
'app-service-control': (resolve) => { require(['./android/AppServiceControl'], resolve) },
|
|
8
|
+
'app-sign': (resolve) => { require(['./android/AppSign'], resolve) },
|
|
9
|
+
'app-take-pic': (resolve) => { require(['./android/AppTakePic'], resolve) },
|
|
10
|
+
'app-installation-details': (resolve) => { require(['./android/AppInstallationDetails'], resolve) },
|
|
11
|
+
'app-apply-devices-management': (resolve) => { require(['./android/AppDevicesManagement'], resolve) },
|
|
12
|
+
'app-charge-management': (resolve) => { require(['./android/AppChargeManagement'], resolve) }
|
|
13
|
+
|
|
14
|
+
}
|
|
15
|
+
exports.specialComp = specialComp
|