apply-clients 3.4.91 → 3.4.93
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 +133 -133
- package/package.json +117 -117
- package/src/App.vue +26 -21
- package/src/components/android/Ignition/VentilationIgnition.vue +312 -312
- package/src/components/android/Ignition/VentilationIgnitionHandle.vue +353 -353
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +476 -476
- package/src/components/product/Function/InstallInfoSelect.vue +326 -326
- package/src/components/product/Ignition/IgnitionListManage.vue +420 -420
- package/src/components/product/Material/MaterialDetailed.vue +268 -268
- package/src/components/product/Material/Materiallist.vue +74 -74
- package/src/components/product/Material/Materialmanger.vue +58 -58
- package/src/components/product/Process/ExplorationSelect.vue +491 -491
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +203 -203
- package/src/components/product/Process/ShowBackReason.vue +40 -40
- package/src/components/product/Stop/StopApplyList.vue +278 -278
- package/src/components/product/Supervisory/SupervisoryControl.vue +140 -140
- package/src/filiale/hongda/pc/printChargepc.vue +114 -114
- package/src/filiale/hongda/pc/printactivatecard.vue +151 -151
- package/src/filiale/linzhou/pc/ApplyChargeList.vue +486 -486
- package/src/filiale/linzhou/pc/ServiceControl.vue +1968 -1968
- package/src/filiale/linzhou/pc/devicesManagement.vue +494 -494
- package/src/filiale/linzhou/pc.js +10 -10
- package/src/filiale/qianneng/android/AppAddMaterialScience.vue +477 -477
- package/src/filiale/qianneng/android/AppExplorationUser.vue +447 -447
- package/src/filiale/qianneng/android/AppServiceControl.vue +1608 -1608
- package/src/filiale/qianneng/android/AppServiceView.vue +761 -761
- package/src/filiale/qianneng/android/AppSign.vue +152 -152
- package/src/filiale/qianneng/android/AppTakePic.vue +140 -140
- package/src/filiale/qianneng/android.js +12 -12
- package/src/filiale/qianneng/pc/ApplyUpload.vue +290 -290
- package/src/filiale/qianneng/pc/Applybatchdispatch.vue +685 -685
- package/src/filiale/qianneng/pc/ExplorationUser.vue +189 -189
- package/src/filiale/qianneng/pc/InstallationDetails.vue +561 -561
- package/src/filiale/qianneng/pc/ServiceView.vue +1118 -1121
- package/src/filiale/qianneng/pc/SupervisoryList.vue +344 -344
- package/src/filiale/qianneng/pc/SupervisoryhCart.vue +127 -127
- package/src/filiale/qianneng/pc/addMaterialScience.vue +464 -464
- package/src/filiale/qianneng/pc/addressAndUserinfoManagement.vue +389 -389
- package/src/filiale/qianneng/pc/devicesManagement.vue +484 -484
- package/src/filiale/qianneng/pc/printactivatecard.vue +295 -295
- package/src/filiale/qianneng/pc.js +26 -26
- package/src/filiale/yangchunboneng/pc/ApplyChargeList.vue +516 -0
- package/src/filiale/yangchunboneng/pc.js +13 -12
- package/src/main.js +23 -23
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import Vue from 'vue'
|
|
2
|
-
|
|
3
|
-
let specialComp = {
|
|
4
|
-
'service-control': (resolve) => { require(['./pc/ServiceControl'], resolve) },
|
|
5
|
-
'apply-charge-management': (resolve) => { require(['./pc/chargeManagement'], resolve) },
|
|
6
|
-
'supervisory-service-control': (resolve) => { require(['./pc/SupervisoryServiceControl.vue'], resolve) },
|
|
7
|
-
'apply-charge-list': (resolve) => { require(['./pc/ApplyChargeList'], resolve) },
|
|
8
|
-
'apply-devices-management': (resolve) => { require(['./pc/devicesManagement'], resolve) }
|
|
9
|
-
}
|
|
10
|
-
exports.specialComp = specialComp
|
|
1
|
+
import Vue from 'vue'
|
|
2
|
+
|
|
3
|
+
let specialComp = {
|
|
4
|
+
'service-control': (resolve) => { require(['./pc/ServiceControl'], resolve) },
|
|
5
|
+
'apply-charge-management': (resolve) => { require(['./pc/chargeManagement'], resolve) },
|
|
6
|
+
'supervisory-service-control': (resolve) => { require(['./pc/SupervisoryServiceControl.vue'], resolve) },
|
|
7
|
+
'apply-charge-list': (resolve) => { require(['./pc/ApplyChargeList'], resolve) },
|
|
8
|
+
'apply-devices-management': (resolve) => { require(['./pc/devicesManagement'], resolve) }
|
|
9
|
+
}
|
|
10
|
+
exports.specialComp = specialComp
|