manage-client 3.3.172 → 3.3.174
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 +5 -5
- package/package.json +1 -1
- package/src/components/SellReport/BusinessClassify.vue +292 -290
- package/src/components/SellReport/GasMoneyPublicConReport.vue +258 -0
- package/src/components/sale/businessquery/FMYGasQuery.vue +9 -0
- package/src/filiale/liaoyuan/HandplanQuery.vue +1289 -1289
- package/src/main.js +6 -6
- package/src/reportManage.js +4 -0
package/src/main.js
CHANGED
|
@@ -5,11 +5,11 @@ import { all } from 'vue-client'
|
|
|
5
5
|
// import { sale } from 'sale-client'
|
|
6
6
|
import { system } from 'system-clients'
|
|
7
7
|
import { ldap } from 'ldap-clients'
|
|
8
|
-
import saleManage from './saleManage'
|
|
9
|
-
import FilialeSaleManage from './filiale/
|
|
8
|
+
// import saleManage from './saleManage'
|
|
9
|
+
// import FilialeSaleManage from './filiale/WEINAN/sale'
|
|
10
10
|
// import webmeterManage from './webmeterManage'
|
|
11
11
|
// import FilialeWebmeterManage from './filiale/yuncheng/webmeterManage'
|
|
12
|
-
|
|
12
|
+
import reportManage from './reportManage'
|
|
13
13
|
// import FilialeReportManage from './filiale/WEINAN/reportManage'
|
|
14
14
|
// import newmanage from './newmanage'
|
|
15
15
|
// import ManageHome from './ManageHome'
|
|
@@ -51,13 +51,13 @@ all()
|
|
|
51
51
|
ldap()
|
|
52
52
|
system(false)
|
|
53
53
|
|
|
54
|
-
saleManage()
|
|
55
|
-
FilialeSaleManage()
|
|
54
|
+
// saleManage()
|
|
55
|
+
// FilialeSaleManage()
|
|
56
56
|
// webmeterManage()
|
|
57
57
|
// FilialeWebmeterManage()
|
|
58
58
|
// ManageHome()
|
|
59
59
|
// newmanage()
|
|
60
|
-
|
|
60
|
+
reportManage()
|
|
61
61
|
// FilialeReportManage()
|
|
62
62
|
require('system-clients/src/styles/less/bootstrap.less')
|
|
63
63
|
require('./components/qinhua/Style/qinhuaStyle.less')
|
package/src/reportManage.js
CHANGED
|
@@ -530,6 +530,10 @@ export default function () {
|
|
|
530
530
|
Vue.component('public-sell-report', (resolve) => {
|
|
531
531
|
require(['./components/SellReport/GasMoneyPublicReport'], resolve)
|
|
532
532
|
})
|
|
533
|
+
// 气费通用报表简版
|
|
534
|
+
Vue.component('public-sell-con-report', (resolve) => {
|
|
535
|
+
require(['./components/SellReport/GasMoneyPublicConReport'], resolve)
|
|
536
|
+
})
|
|
533
537
|
// 其他收费通用报表
|
|
534
538
|
Vue.component('public-other-report', (resolve) => {
|
|
535
539
|
require(['./components/SellReport/OtherChargePublicReport'], resolve)
|