manage-client 3.2.199 → 3.2.201
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 +1 -1
- package/package.json +1 -1
- package/src/components/SellReport/JiManageBusSummary.vue +237 -0
- package/src/components/SellReport/ManageSellTypeNew.vue +169 -0
- package/src/filiale/WEINAN/BusinessManage.vue +163 -160
- package/src/filiale/WEINAN/CancellationQuery.vue +486 -486
- package/src/filiale/WEINAN/MergeFileQuery.vue +185 -0
- package/src/filiale/WEINAN/sale.js +48 -46
- package/src/filiale/qianneng/ChargeQuery.vue +1 -1
- package/src/filiale/qianneng/GasStatistics.vue +510 -0
- package/src/filiale/qianneng/HandplanQuery.vue +1 -1
- package/src/filiale/qianneng/webmeterManage.js +9 -0
- package/src/main.js +66 -66
- package/src/reportManage.js +8 -0
package/src/reportManage.js
CHANGED
|
@@ -151,6 +151,10 @@ export default function (filiale) {
|
|
|
151
151
|
Vue.component('manage-bus-summary', (resolve) => {
|
|
152
152
|
require(['./components/SellReport/ManageBusSummary'], resolve)
|
|
153
153
|
})
|
|
154
|
+
// 报表展示组件((机表)收费结账报表)
|
|
155
|
+
Vue.component('jimanage-bus-summary', (resolve) => {
|
|
156
|
+
require(['./components/SellReport/JiManageBusSummary'], resolve)
|
|
157
|
+
})
|
|
154
158
|
// 报表展示组件(收费汇总报表-无付款方式用户类型与用气性质分组)
|
|
155
159
|
Vue.component('manage-bus-summarynopay', (resolve) => {
|
|
156
160
|
require(['./components/SellReport/ManageBusSummarynopay'], resolve)
|
|
@@ -203,6 +207,10 @@ export default function (filiale) {
|
|
|
203
207
|
Vue.component('manage-sell-type', (resolve) => {
|
|
204
208
|
require(['./components/SellReport/ManageSellType'], resolve)
|
|
205
209
|
})
|
|
210
|
+
// 报表展示组件(新营业分析汇总报表)
|
|
211
|
+
Vue.component('manage-sell-type-new', (resolve) => {
|
|
212
|
+
require(['./components/SellReport/ManageSellTypeNew'], resolve)
|
|
213
|
+
})
|
|
206
214
|
// 报表展示组件(用户新增销户统计报表)
|
|
207
215
|
Vue.component('manage-user-count', (resolve) => {
|
|
208
216
|
require(['./components/SellReport/ManageUserCount'], resolve)
|