apply-clients 3.4.52 → 3.4.54
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 +4 -4
- package/package.json +2 -2
- package/src/App.vue +21 -20
- package/src/apply.js +113 -113
- package/src/applyAndroid.js +53 -53
- package/src/components/android/AppServiceView.vue +745 -745
- package/src/components/android/AppSign.vue +154 -154
- package/src/components/android/Process/AppExplorationUser.vue +507 -507
- package/src/components/android/Process/AppServiceControl.vue +1708 -1708
- package/src/components/android/Process/Processes/AppAddMaterialScience.vue +477 -477
- package/src/components/android/Process/Processes/AppDevicesManagement.vue +519 -519
- package/src/components/android/Process/Processes/AppInstallationDetails.vue +482 -482
- package/src/components/android/Supervisory/AppSupervisoryCart.vue +156 -156
- package/src/components/product/Business/BusinessApply.vue +269 -269
- package/src/components/product/Business/CivilApply.vue +269 -269
- package/src/components/product/GroupByApply/ApplyGroupByList.vue +253 -253
- package/src/components/product/GroupByApply/ApplyGroupByMain.vue +53 -53
- package/src/components/product/GroupByApply/ApplyGroupByPaper.vue +376 -376
- package/src/components/product/Material/MaterialDetailed.vue +262 -262
- package/src/components/product/OldApply/Monitor/MonitorApply.vue +360 -360
- package/src/components/product/Print/BuildOrder/printBuildOrder.vue +157 -157
- package/src/components/product/Print/IgnitionBill/IgnitionBill.vue +259 -259
- package/src/components/product/Print/IgnitionBill/printIgnitionBill.vue +168 -168
- package/src/components/product/Process/ExplorationSelect.vue +495 -495
- package/src/components/product/Process/ExplorationUser.vue +189 -189
- package/src/components/product/Process/Processes/InstallationDetails.vue +610 -610
- package/src/components/product/Process/Processes/Print/printCharge.vue +166 -166
- package/src/components/product/Process/Processes/addMaterialScience.vue +454 -454
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +211 -211
- package/src/components/product/Process/Processes/chargeManagement.vue +656 -656
- package/src/components/product/Process/Processes/devicesManagement.vue +484 -484
- package/src/components/product/Process/Service/ServiceControl.vue +1923 -1923
- package/src/components/product/ServiceView.vue +981 -981
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +10 -4
- package/src/components/product/Supervisory/SupervisoryControl.vue +137 -137
- package/src/components/product/Supervisory/SupervisoryList.vue +404 -404
- package/src/components/product/VueUtils/ApplyUpload.vue +292 -275
- package/src/filiale/gehua/pc/ExplorationSelect.vue +483 -483
- package/src/filiale/gehua/pc/ServiceControl.vue +1929 -1929
- package/src/filiale/gehua/pc/SupervisoryControl.vue +137 -137
- package/src/filiale/gehua/pc/SupervisoryServiceControl.vue +890 -890
- package/src/filiale/gehua/pc/buildOrderList.vue +339 -339
- package/src/filiale/gehua/pc/printBuildOrder.vue +243 -243
- package/src/filiale/gehua/pc.js +11 -11
- package/src/filiale/guangxi/android/Process/AppExplorationUser.vue +503 -503
- package/src/filiale/guangxi/android/Process/Processes/AppAddMaterialScience.vue +470 -470
- package/src/filiale/guangxi/android/Process/Processes/AppDevicesManagement.vue +519 -519
- package/src/filiale/guangxi/android/Process/Processes/AppInstallationDetails.vue +482 -482
- package/src/filiale/guangxi/android/Process/Processes/AppServiceControl.vue +1708 -1708
- package/src/filiale/guangxi/android/Process/Processes/AppServiceView.vue +766 -766
- package/src/filiale/guangxi/android.js +9 -9
- package/src/filiale/guangxi/pc/ApplyCharge/ApplyChargeList.vue +470 -470
- package/src/filiale/guangxi/pc/ApplyCharge/chargeManagement.vue +702 -702
- package/src/filiale/guangxi/pc/Process/ExplorationSelect.vue +538 -538
- package/src/filiale/guangxi/pc/Process/Service/ServiceControl.vue +1922 -1922
- package/src/filiale/guangxi/pc/Process/Service/SupervisoryServiceControl.vue +891 -891
- package/src/filiale/guangxi/pc/Process/Service/addMaterialScience.vue +482 -482
- package/src/filiale/guangxi/pc.js +15 -15
- package/src/main.js +23 -23
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import Vue from 'vue'
|
|
2
|
-
|
|
3
|
-
let specialComp = {
|
|
4
|
-
'exploration-user': (resolve) => { require(['./pc/Process/ExplorationUser'], resolve) },
|
|
5
|
-
'exploration-select': (resolve) => { require(['./pc/Process/ExplorationSelect'], resolve) },
|
|
6
|
-
'supervisory-service-control': (resolve) => { require(['./pc/Process/Service/SupervisoryServiceControl'], resolve) },
|
|
7
|
-
'service-control': (resolve) => { require(['./pc/Process/Service/ServiceControl'], resolve) },
|
|
8
|
-
'apply-charge-list': (resolve) => { require(['./pc/ApplyCharge/ApplyChargeList'], resolve) },
|
|
9
|
-
'apply-charge-management': (resolve) => { require(['./pc/ApplyCharge/chargeManagement'], resolve) },
|
|
10
|
-
'apply-charge-search': (resolve) => { require(['./pc/ApplyCharge/ApplyChargeSearch'], resolve) },
|
|
11
|
-
'add-material-science': (resolve) => { require(['./pc/Process/Service/addMaterialScience'], resolve) },
|
|
12
|
-
'apply-eticke-print': (resolve) => { require(['./pc/Process/Service/EticketPrint'], resolve) }
|
|
13
|
-
|
|
14
|
-
}
|
|
15
|
-
exports.specialComp = specialComp
|
|
1
|
+
import Vue from 'vue'
|
|
2
|
+
|
|
3
|
+
let specialComp = {
|
|
4
|
+
'exploration-user': (resolve) => { require(['./pc/Process/ExplorationUser'], resolve) },
|
|
5
|
+
'exploration-select': (resolve) => { require(['./pc/Process/ExplorationSelect'], resolve) },
|
|
6
|
+
'supervisory-service-control': (resolve) => { require(['./pc/Process/Service/SupervisoryServiceControl'], resolve) },
|
|
7
|
+
'service-control': (resolve) => { require(['./pc/Process/Service/ServiceControl'], resolve) },
|
|
8
|
+
'apply-charge-list': (resolve) => { require(['./pc/ApplyCharge/ApplyChargeList'], resolve) },
|
|
9
|
+
'apply-charge-management': (resolve) => { require(['./pc/ApplyCharge/chargeManagement'], resolve) },
|
|
10
|
+
'apply-charge-search': (resolve) => { require(['./pc/ApplyCharge/ApplyChargeSearch'], resolve) },
|
|
11
|
+
'add-material-science': (resolve) => { require(['./pc/Process/Service/addMaterialScience'], resolve) },
|
|
12
|
+
'apply-eticke-print': (resolve) => { require(['./pc/Process/Service/EticketPrint'], resolve) }
|
|
13
|
+
|
|
14
|
+
}
|
|
15
|
+
exports.specialComp = specialComp
|
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()
|
|
15
|
-
material()
|
|
16
|
-
system(false)
|
|
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()
|
|
13
|
+
ldap()
|
|
14
|
+
sale()
|
|
15
|
+
material()
|
|
16
|
+
system(false)
|
|
17
|
+
|
|
18
|
+
require('system-clients/src/styles/less/bootstrap.less')
|
|
19
|
+
require('./expandcss.less')
|
|
20
|
+
new Vue({
|
|
21
|
+
el: 'body',
|
|
22
|
+
components: { App }
|
|
23
|
+
})
|