manage-client 3.3.210 → 3.3.211
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/yangchun/YcBusSummaryes.vue +229 -0
- package/src/components/sale/businessquery/ChargeQuery.vue +8 -8
- package/src/components/sale/businessquery/HandplanQuery.vue +33 -33
- package/src/components/sale/businessquery/WebHandplanQuery.vue +24 -4
- package/src/components/sale/common/PrintTableManage.vue +242 -0
- package/src/components/sale/config/exportConfig.js +0 -1
- package/src/components/sale/config/tableConfig.js +2 -1
- package/src/components/sale/filesquery/FireQuery.vue +20 -1
- package/src/components/webmeter/DrillData/GetNoMetereadData.vue +25 -1
- package/src/components/webmeter/newwebmeter/NewException/MeterExceptionList.vue +59 -94
- package/src/components/webmeter/report/ReportList.vue +2 -2
- package/src/filiale/bayan/config/DefaultPrint.js +6 -0
- package/src/filiale/bayan/config/exportConfig.js +2642 -0
- package/src/filiale/bayan/config/tableConfig.js +59 -0
- package/src/filiale/bayan/webmeter/GetNoMetereadData.vue +425 -0
- package/src/filiale/bayan/webmeter/LostContactAnalysisList.vue +719 -0
- package/src/filiale/bayan/webmeter/MeterExceptionList.vue +591 -0
- package/src/filiale/bayan/webmeter/NewGasStatistics.vue +665 -0
- package/src/filiale/bayan/webmeter/NewQueryInstruct.vue +650 -0
- package/src/filiale/bayan/webmeter/NewWebmeterSettlementAnalysis.vue +464 -0
- package/src/filiale/bayan/webmeter/RechargeList.vue +430 -0
- package/src/filiale/bayan/webmeter/ReportDataQuery.vue +343 -0
- package/src/filiale/bayan/webmeter/ReportList.vue +555 -0
- package/src/filiale/bayan/webmeter/UserLostContactAnalysis.vue +674 -0
- package/src/filiale/bayan/webmeterManage.js +26 -0
- package/src/filiale/kelai/feimin_style_kl.vue +1 -1
- package/src/filiale/yuncheng/ChangeMeterQuery.vue +17 -0
- package/src/filiale/yuncheng/MeterQuery.vue +995 -0
- package/src/filiale/yuncheng/config/exportConfig.js +4 -0
- package/src/filiale/yuncheng/sale.js +4 -0
- package/src/reportManage.js +5 -0
- package/src/saleManage.js +2 -0
|
@@ -148,6 +148,7 @@ export default {
|
|
|
148
148
|
'f_gasproperties': '用气性质',
|
|
149
149
|
'f_meternumber': '表号',
|
|
150
150
|
'f_card_id': '卡号',
|
|
151
|
+
'f_defendcard': '防盗卡号',
|
|
151
152
|
'f_price_name': '气价名称',
|
|
152
153
|
'value': '气价详情',
|
|
153
154
|
'f_meter_brand': '气表品牌',
|
|
@@ -158,6 +159,7 @@ export default {
|
|
|
158
159
|
'f_input_date': '建表时间',
|
|
159
160
|
'f_table_state': '气表状态',
|
|
160
161
|
'isbgl': '是否壁挂炉',
|
|
162
|
+
'f_valve_state': '阀门状态',
|
|
161
163
|
'f_networkvalve': '自动阀控'
|
|
162
164
|
},
|
|
163
165
|
ResidentialQuery: {
|
|
@@ -752,9 +754,11 @@ export default {
|
|
|
752
754
|
'f_changemeter_fee': '换表费',
|
|
753
755
|
'f_meternumber_old': '旧表号',
|
|
754
756
|
'f_meternumber': '新表号',
|
|
757
|
+
'f_defendcard': '防盗卡号',
|
|
755
758
|
'f_meter_brand_old': '旧气表品牌',
|
|
756
759
|
'f_meter_brand': '新气表品牌',
|
|
757
760
|
'f_using_base_old': '旧表底数',
|
|
761
|
+
'f_initial_base_new': '新表底数',
|
|
758
762
|
'f_total_oldgasfee': '旧表累购',
|
|
759
763
|
'f_remanent_gas': '补气量',
|
|
760
764
|
'f_remanent_money': '补气金额',
|
package/src/reportManage.js
CHANGED
|
@@ -586,6 +586,11 @@ export default function () {
|
|
|
586
586
|
Vue.component('bus-summaryes', (resolve) => {
|
|
587
587
|
require(['./components/SellReport/BusSummaryes'], resolve)
|
|
588
588
|
})
|
|
589
|
+
|
|
590
|
+
// 报表展示组件(阳春日结账报表)
|
|
591
|
+
Vue.component('yc-bus-summaryes', (resolve) => {
|
|
592
|
+
require(['./components/SellReport/yangchun/YcBusSummaryes'], resolve)
|
|
593
|
+
})
|
|
589
594
|
// 乌海公服报表
|
|
590
595
|
Vue.component('gf-report-wh', (resolve) => {
|
|
591
596
|
require(['./components/SellReport/GFReportWH'], resolve)
|
package/src/saleManage.js
CHANGED
|
@@ -686,4 +686,6 @@ export default function () {
|
|
|
686
686
|
Vue.component('user-open-echarts', (resolve) => { require(['./components/BasisEcharts/businessQuery/userOpenEcharts'], resolve) })
|
|
687
687
|
|
|
688
688
|
Vue.component('web-meter-user-month-query', (resolve) => { require(['./components/sale/businessquery/WebMeterMonthUserGasQuery'], resolve) })
|
|
689
|
+
// 打印
|
|
690
|
+
Vue.component('print-table', (resolve) => { require(['./components/sale/common/PrintTableManage'], resolve) })
|
|
689
691
|
}
|