manage-client 3.2.200 → 3.2.202
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/package.json +1 -1
- package/src/components/SellReport/ManageSellTypeNew.vue +169 -0
- package/src/filiale/WEINAN/BusinessManage.vue +3 -0
- package/src/filiale/WEINAN/MergeFileQuery.vue +185 -0
- package/src/filiale/WEINAN/sale.js +3 -1
- package/src/filiale/gehua/ReportDataQuery.vue +279 -0
- package/src/filiale/gehua/config/exportConfig.js +1084 -0
- package/src/filiale/gehua/config/tableConfig.js +56 -0
- package/src/filiale/gehua/webmeterManage.js +1 -0
- package/src/filiale/qingtongxia/NewWebMeterHandPlan.vue +724 -0
- package/src/filiale/qingtongxia/webmeterManage.js +9 -0
- package/src/reportManage.js +4 -0
package/src/reportManage.js
CHANGED
|
@@ -207,6 +207,10 @@ export default function (filiale) {
|
|
|
207
207
|
Vue.component('manage-sell-type', (resolve) => {
|
|
208
208
|
require(['./components/SellReport/ManageSellType'], resolve)
|
|
209
209
|
})
|
|
210
|
+
// 报表展示组件(新营业分析汇总报表)
|
|
211
|
+
Vue.component('manage-sell-type-new', (resolve) => {
|
|
212
|
+
require(['./components/SellReport/ManageSellTypeNew'], resolve)
|
|
213
|
+
})
|
|
210
214
|
// 报表展示组件(用户新增销户统计报表)
|
|
211
215
|
Vue.component('manage-user-count', (resolve) => {
|
|
212
216
|
require(['./components/SellReport/ManageUserCount'], resolve)
|