manage-client 4.0.14 → 4.0.16
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 +3 -3
- package/package.json +1 -1
- package/src/components/SellReport/ManageChargeBillBeiFangShiYe.vue +251 -0
- package/src/components/SellReport/ManageFillGasQueryBeiFangShiYe.vue +251 -0
- package/src/components/SellReport/ManageOtherChargeBeiFangShiYe.vue +251 -0
- package/src/components/SellReport/ManageSellGasQueryBeiFangShiYe.vue +251 -0
- package/src/components/SellReport/ManageUseGasQueryBeiFangShiYe.vue +251 -0
- package/src/components/SellReport/ManageUserClassifyBeiFangShiYe.vue +271 -0
- package/src/filiale/qingjian/SellingTable.vue +220 -0
- package/src/filiale/qingjian/reportManage.js +7 -0
- package/src/filiale/tongchuan/BusinessClassify.vue +386 -0
- package/src/filiale/tongchuan/DepartmentPrick.vue +292 -0
- package/src/filiale/tongchuan/GasPrice.vue +13 -39
- package/src/filiale/tongchuan/ManageBusSummary.vue +8 -9
- package/src/filiale/tongchuan/ManageHandInputtor.vue +261 -0
- package/src/filiale/tongchuan/ManageSellType.vue +267 -0
- package/src/filiale/tongchuan/ManageUserCount.vue +369 -0
- package/src/filiale/tongchuan/MarketMonth.vue +297 -0
- package/src/filiale/tongchuan/SaleMonthReport.vue +155 -0
- package/src/filiale/tongchuan/UserClassify.vue +249 -0
- package/src/filiale/tongchuan/reportManage.js +34 -1
- package/src/filiale/xihu/NewQueryInstruct.vue +665 -0
- package/src/filiale/xihu/webmeterManage.js +6 -0
- package/src/main.js +2 -0
- package/src/reportManage.js +22 -0
- package/src/filiale/jinbin/exportConfig.js +0 -1110
- package/src/filiale/jinbin/sale/businessquery/ChargeQuery.vue +0 -1372
- package/src/filiale/jinbin/sale.js +0 -7
package/src/main.js
CHANGED
|
@@ -6,6 +6,7 @@ import { all } from 'vue-client'
|
|
|
6
6
|
import { system } from 'system-clients'
|
|
7
7
|
import { ldap } from 'ldap-clients'
|
|
8
8
|
import saleManage from './saleManage'
|
|
9
|
+
import ShanXianSaleManage from './filiale/yangchun/sale'
|
|
9
10
|
import ShanXianwebSaleManage from './filiale/shexian/webmeterManage'
|
|
10
11
|
import webmeterManage from './webmeterManage'
|
|
11
12
|
import reportManage from './reportManage'
|
|
@@ -51,6 +52,7 @@ ManageHome()
|
|
|
51
52
|
newmanage()
|
|
52
53
|
ShanXianwebSaleManage()
|
|
53
54
|
reportManage()
|
|
55
|
+
ShanXianSaleManage()
|
|
54
56
|
require('system-clients/src/styles/less/bootstrap.less')
|
|
55
57
|
require('./components/qinhua/Style/qinhuaStyle.less')
|
|
56
58
|
// require('./bootstrap/less/manageStyle/manageChile.less')
|
package/src/reportManage.js
CHANGED
|
@@ -228,6 +228,28 @@ export default function () {
|
|
|
228
228
|
Vue.component('manage-gas-fee', (resolve) => {
|
|
229
229
|
require(['./components/SellReport/ManageGasFee'], resolve)
|
|
230
230
|
})
|
|
231
|
+
// 北方实业用气汇总报表
|
|
232
|
+
Vue.component('manage-use-gas-beifangshiye', (resolve) => {
|
|
233
|
+
require(['./components/SellReport/ManageUseGasQueryBeiFangShiYe'], resolve)
|
|
234
|
+
})
|
|
235
|
+
// 北方实业售气汇总报表
|
|
236
|
+
Vue.component('manage-sell-gas-beifangshiye', (resolve) => {
|
|
237
|
+
require(['./components/SellReport/ManageSellGasQueryBeiFangShiYe'], resolve)
|
|
238
|
+
})
|
|
239
|
+
// 北方实业用户分类统计
|
|
240
|
+
Vue.component('manage-user-classify-beifangshiye', (resolve) => {
|
|
241
|
+
require(['./components/SellReport/ManageUserClassifyBeiFangShiYe'], resolve)
|
|
242
|
+
})
|
|
243
|
+
Vue.component('manage-fill-gas-beifangshiye', (resolve) => {
|
|
244
|
+
require(['./components/SellReport/ManageFillGasQueryBeiFangShiYe'], resolve)
|
|
245
|
+
})
|
|
246
|
+
Vue.component('manage-charge-bill-beifangshiye', (resolve) => {
|
|
247
|
+
require(['./components/SellReport/ManageChargeBillBeiFangShiYe'], resolve)
|
|
248
|
+
})
|
|
249
|
+
// 报表展示组件(其他收费汇总)
|
|
250
|
+
Vue.component('manage-other-charge-beifangshiye', (resolve) => {
|
|
251
|
+
require(['./components/SellReport/ManageOtherChargeBeiFangShiYe'], resolve)
|
|
252
|
+
})
|
|
231
253
|
// 报表展示组件(收费统计表)
|
|
232
254
|
Vue.component('manage-gas-fee-operator', (resolve) => {
|
|
233
255
|
require(['./components/SellReport/ManageGasFeeOperator'], resolve)
|