manage-client 3.2.281 → 3.2.283
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/filiale/wenxi/WebHandQuery.vue +13 -13
- package/src/filiale/wenxi/config/exportConfig.js +7 -7
- package/src/filiale/xinkang/BankManager.vue +197 -0
- package/src/filiale/xinkang/EchartsBox.vue +11 -6
- package/src/filiale/xinkang/ManageBrandHouseCount.vue +297 -0
- package/src/filiale/xinkang/exportConfig.js +1998 -0
- package/src/filiale/xinkang/reportManage.js +3 -0
- package/src/filiale/xinkang/sale.js +2 -0
- package/src/filiale/yuansheng/DayReportList.vue +2 -1
|
@@ -8,4 +8,7 @@ export default function () {
|
|
|
8
8
|
Vue.component('data-acquisition-type', (resolve) => { require(['./DataAcquisitionType'], resolve) })
|
|
9
9
|
// 首页图表
|
|
10
10
|
Vue.component('echarts-box', (resolve) => { require(['./EchartsBox'], resolve) })
|
|
11
|
+
// 新增用户散列图
|
|
12
|
+
Vue.component('bank-manager', (resolve) => { require(['./BankManager'], resolve) })
|
|
13
|
+
|
|
11
14
|
}
|
|
@@ -8,4 +8,6 @@ export default function () {
|
|
|
8
8
|
// 综合档案查询
|
|
9
9
|
Vue.component('record-info-query', (resolve) => { require(['./RecordInfoQuery'], resolve) })
|
|
10
10
|
Vue.component('user-query', (resolve) => { require(['./UserQuery'], resolve) })
|
|
11
|
+
// 表品牌户数统计
|
|
12
|
+
Vue.component('brand-house-count', (resolve) => { require(['./ManageBrandHouseCount'], resolve) })
|
|
11
13
|
}
|
|
@@ -291,7 +291,7 @@ export default {
|
|
|
291
291
|
depname: '',
|
|
292
292
|
criteriaShow: false,
|
|
293
293
|
operates: [{label: '全部', value: ''}, {label: '发卡售气', value: "发卡售气"},{label: '卡表收费', value: "卡表收费"},{label: '补气', value: "补气"},{label: '补卡', value: "补卡"},{label: '换表', value: "换表"},{label: '冲正', value: "冲正"},{label: '物联网收费', value: "物联网收费"}],
|
|
294
|
-
paymentchannels: [{label: '全部', value: ''},{label: '营业厅', value: "not in ('支付宝','
|
|
294
|
+
paymentchannels: [{label: '全部', value: ''},{label: '营业厅', value: "not in ('支付宝','微信支付')"},{label: '支付宝', value: " = '支付宝'"},{label: '微信支付', value: "= '微信支付'"}],
|
|
295
295
|
// hasapps: [{label: '包含APP', value: ''}, {label: '不包含APP', value: "!= '悦生活'"}],
|
|
296
296
|
totalCount: 0
|
|
297
297
|
}
|
|
@@ -301,6 +301,7 @@ export default {
|
|
|
301
301
|
this.$refs.paged.$refs.cri.condition += this.orgCondtionStr
|
|
302
302
|
this.$refs.paged.$refs.cri.model.f_hasapp = [`!= '悦生活'`]
|
|
303
303
|
this.$refs.paged.$refs.cri.model.f_type = ['卡表收费','物联网收费','发卡售气']
|
|
304
|
+
this.$refs.paged.$refs.cri.model.f_state = ['有效']
|
|
304
305
|
this.$refs.paged.$refs.cri.model.f_startDate = this.$login.toStandardDateString()
|
|
305
306
|
this.$refs.paged.$refs.cri.model.f_endDate = this.$login.toStandardDateString()
|
|
306
307
|
// this.search()
|