apply-clients 3.5.4-97 → 3.5.4-98
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 +9 -6
- package/package.json +1 -1
- package/src/App.vue +25 -25
- package/src/components/android/AppTakePic.vue +182 -182
- package/src/components/android/Process/AppExplorationUser.vue +508 -508
- package/src/components/product/Material/MaterialDetailed.vue +268 -268
- package/src/components/product/ServiceView.vue +1028 -1026
- package/src/filiale/ancheng/android/AppSign.vue +149 -149
- package/src/filiale/ancheng/android/AppTakePic.vue +143 -143
- package/src/filiale/ancheng/android.js +7 -7
- package/src/filiale/fugou/android/AppAddMaterialScience.vue +440 -440
- package/src/filiale/fugou/android/AppDevicesManagement.vue +519 -519
- package/src/filiale/fugou/android/AppInstallationDetails.vue +541 -541
- package/src/filiale/fugou/android/AppServiceControl.vue +1845 -1845
- package/src/filiale/fugou/android/printCharge.vue +162 -162
- package/src/filiale/fugou/android.js +16 -16
- package/src/filiale/fugou/pc/ExplorationSelect.vue +525 -525
- package/src/filiale/fugou/pc/ServiceControl.vue +1705 -1705
- package/src/filiale/fugou/pc/ServiceView.vue +941 -941
- package/src/filiale/fugou/pc/devicesManagement.vue +483 -483
- package/src/filiale/fugou/pc/printChargepc.vue +148 -148
- package/src/filiale/gongyi/android/AppAddMaterialScience.vue +493 -493
- package/src/filiale/hongda/pc/ApplyDetailsList.vue +329 -329
- package/src/filiale/qianneng/android/AppChargeManagement.vue +686 -686
- package/src/filiale/qianneng/android/AppServiceView.vue +795 -795
- package/src/filiale/qianneng/android.js +15 -15
- package/src/filiale/qianneng/pc/ApplyChargeList.vue +639 -639
- package/src/filiale/qianneng/pc/ApplyMaterialDetailed.vue +261 -261
- package/src/filiale/qianneng/pc/Applybatchdispatch.vue +769 -769
- package/src/filiale/qianneng/pc/Applydetail.vue +417 -417
- package/src/filiale/qianneng/pc/InstallFunction.vue +188 -188
- package/src/filiale/qianneng/pc/InstallInfoSelect.vue +434 -434
- package/src/filiale/qianneng/pc/ServiceControl.vue +1382 -1382
- package/src/filiale/qianneng/pc/StopApplyList.vue +334 -334
- package/src/filiale/qianneng/pc/SupervisoryList.vue +396 -396
- package/src/filiale/qianneng/pc/chargeManagement.vue +813 -813
- package/src/filiale/qianneng/pc.js +29 -29
- package/src/filiale/yangchunboneng/android/AppChargeManagement.vue +520 -520
- package/src/filiale/yangchunboneng/android/AppDevicesManagement.vue +645 -645
- package/src/filiale/yangchunboneng/android/AppServiceControl.vue +1706 -1703
- package/src/filiale/yangchunboneng/pc/ExplorationSelect.vue +547 -547
- package/src/filiale/yangchunboneng/pc/ServiceControl.vue +2115 -2112
- package/src/filiale/yangchunboneng/pc/ServiceView.vue +1007 -1005
- package/src/filiale/yangchunboneng/pc/SupervisoryList.vue +605 -605
- package/src/filiale/yangchunboneng/pc/SupervisoryListNew.vue +683 -683
- package/src/filiale/yangchunboneng/pc/chargeManagement.vue +1052 -1052
- package/src/filiale/yangchunboneng/pc/devicesManagement.vue +574 -574
- package/src/main.js +23 -23
package/src/main.js
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import Vue from 'vue'
|
|
2
|
-
import App from './App'
|
|
3
|
-
import { all } from 'vue-client'
|
|
4
|
-
import {ldap} from 'ldap-clients'
|
|
5
|
-
import {system} from 'system-clients'
|
|
6
|
-
import {sale} from 'sale-client'
|
|
7
|
-
import {material} from 'material-client'
|
|
8
|
-
|
|
9
|
-
import apply from './apply'
|
|
10
|
-
|
|
11
|
-
all()
|
|
12
|
-
apply('
|
|
13
|
-
ldap()
|
|
14
|
-
sale('qianneng')
|
|
15
|
-
material()
|
|
16
|
-
system(false, 'qianneng')
|
|
17
|
-
|
|
18
|
-
require('system-clients/src/styles/less/bootstrap.less')
|
|
19
|
-
require('./expandcss.less')
|
|
20
|
-
new Vue({
|
|
21
|
-
el: 'body',
|
|
22
|
-
components: { App }
|
|
23
|
-
})
|
|
1
|
+
import Vue from 'vue'
|
|
2
|
+
import App from './App'
|
|
3
|
+
import { all } from 'vue-client'
|
|
4
|
+
import {ldap} from 'ldap-clients'
|
|
5
|
+
import {system} from 'system-clients'
|
|
6
|
+
import {sale} from 'sale-client'
|
|
7
|
+
import {material} from 'material-client'
|
|
8
|
+
|
|
9
|
+
import apply from './apply'
|
|
10
|
+
|
|
11
|
+
all()
|
|
12
|
+
apply('yangchunboneng')
|
|
13
|
+
ldap()
|
|
14
|
+
sale('qianneng')
|
|
15
|
+
material()
|
|
16
|
+
system(false, 'qianneng')
|
|
17
|
+
|
|
18
|
+
require('system-clients/src/styles/less/bootstrap.less')
|
|
19
|
+
require('./expandcss.less')
|
|
20
|
+
new Vue({
|
|
21
|
+
el: 'body',
|
|
22
|
+
components: { App }
|
|
23
|
+
})
|