apply-clients 3.5.4-81 → 3.5.4-83
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 +6 -6
- package/package.json +1 -1
- package/src/App.vue +25 -25
- package/src/applyAndroid.js +72 -72
- package/src/components/android/Process/Processes/AppChargeManagement.vue +635 -637
- package/src/components/android/Process/Processes/AppChargeManagementNew.vue +635 -637
- package/src/components/product/Function/Service/FunctionServiceControl.vue +497 -497
- package/src/components/product/MaterialsManage/MaterialsBase.vue +181 -181
- package/src/components/product/MaterialsManage/MaterialsManage.vue +60 -60
- package/src/components/product/Process/ExplorationSelect.vue +497 -497
- package/src/components/product/Process/Processes/chargeManagement.vue +1 -1
- package/src/components/product/ServiceView.vue +1026 -1026
- package/src/filiale/baiyin/android/ByAddMaterialScience.vue +824 -824
- package/src/filiale/baiyin/android/ByDeviceManagement.vue +916 -916
- package/src/filiale/fugou/android/AppChargeManagement.vue +8 -8
- package/src/filiale/fugou/android/AppServiceControl.vue +1 -1
- package/src/filiale/gongyi/android/AppDisclosurerecord.vue +214 -214
- package/src/filiale/gongyi/android/AppInstallationDetails.vue +500 -500
- package/src/filiale/gongyi/android/AppLegacyIssues.vue +309 -309
- package/src/filiale/gongyi/android/AppSign.vue +170 -170
- package/src/filiale/gongyi/android/AppSupplementalAgreement.vue +298 -298
- package/src/filiale/gongyi/android.js +18 -18
- package/src/filiale/gongyi/pc/ApplyUpload.vue +371 -371
- package/src/filiale/gongyi/pc/PcAddLogs.vue +221 -221
- package/src/filiale/gongyi/pc/PcDisclosurerecord.vue +218 -218
- package/src/filiale/gongyi/pc/PcLegacyIssues.vue +309 -309
- package/src/filiale/gongyi/pc/SupervisoryServiceControl.vue +894 -894
- package/src/filiale/gongyi/pc/SupervisoryServiceView.vue +1005 -1005
- package/src/filiale/gongyi/pc/addMaterialScience.vue +575 -575
- package/src/filiale/gongyi/pc/chargeManagement.vue +765 -765
- package/src/filiale/gongyi/pc/supplementalAgreement.vue +277 -277
- package/src/filiale/gongyi/pc.js +24 -24
- package/src/filiale/hongda/pc/SupervisoryList.vue +422 -422
- package/src/filiale/jinhuang/pc/ServiceControl.vue +1925 -1925
- package/src/filiale/jinhuang/pc/addressAndUserinfoManagement.vue +203 -0
- package/src/filiale/jinhuang/pc/chargeManagementNew.vue +589 -589
- package/src/filiale/jinhuang/pc.js +8 -7
- package/src/filiale/siyangRH/android/AppAddMaterialScience.vue +466 -466
- package/src/filiale/yongzhouch/pc/ApplyUpload.vue +327 -327
- package/src/filiale/yongzhouch/pc/ExplorationSelect.vue +490 -490
- package/src/filiale/yongzhouch/pc/InstallationDetails.vue +610 -610
- package/src/filiale/yongzhouch/pc/ServiceControl.vue +1943 -1943
- package/src/filiale/yongzhouch/pc/devicesManagement.vue +488 -488
- package/src/filiale/yongzhouch/pc.js +10 -10
- package/src/main.js +1 -1
- package/app/src/main/java/com/example/phonechatbot/MainActivity.java +0 -50
- package/~/chatbot/main.py +0 -57
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import Vue from 'vue'
|
|
2
|
-
|
|
3
|
-
let specialComp = {
|
|
4
|
-
'apply-charge-management-new': (resolve) => { require(['./pc/chargeManagementNew'], resolve) },
|
|
5
|
-
'
|
|
6
|
-
}
|
|
7
|
-
|
|
1
|
+
import Vue from 'vue'
|
|
2
|
+
|
|
3
|
+
let specialComp = {
|
|
4
|
+
'apply-charge-management-new': (resolve) => { require(['./pc/chargeManagementNew'], resolve) },
|
|
5
|
+
'apply-address-userinfo-management': (resolve) => { require(['./pc/addressAndUserinfoManagement'], resolve) },
|
|
6
|
+
'service-control': (resolve) => { require(['./pc/ServiceControl.vue'], resolve) }
|
|
7
|
+
}
|
|
8
|
+
exports.specialComp = specialComp
|