manage-client 3.2.168 → 3.2.170
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 +109 -109
- package/src/components/SellReport/feimin_style.vue +413 -0
- package/src/components/sale/config/exportConfig.js +4 -0
- package/src/components/webmeter/gasStatistics/GasStatistics.vue +10 -0
- package/src/filiale/liaoyuan/RecordInfoQuery.vue +51 -39
- package/src/filiale/meihekou/ChargeQuery.vue +1265 -1265
- package/src/filiale/qianneng/ArrearsQuery.vue +2 -2
- package/src/filiale/tongchuan/ReportList.vue +1 -1
- package/src/filiale/xinkang/RecordInfoQuery.vue +1311 -0
- package/src/filiale/xinkang/sale.js +3 -1
- package/src/reportManage.js +4 -0
- package/yarn-error.log +7659 -0
- package/.gradle/4.4/fileHashes/fileHashes.bin +0 -0
- package/.gradle/4.4/fileHashes/fileHashes.lock +0 -0
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
// 分公司特殊组件页面注册
|
|
2
2
|
let specialComp = {
|
|
3
3
|
//卡表抄表查询
|
|
4
|
-
'charge-query': (resolve) => {require(['./ChargeQuery'], resolve)}
|
|
4
|
+
'charge-query': (resolve) => {require(['./ChargeQuery'], resolve)},
|
|
5
|
+
// 综合档案查询
|
|
6
|
+
'record-info-query': (resolve) => { require(['./RecordInfoQuery'], resolve) }
|
|
5
7
|
}
|
|
6
8
|
exports.specialComp = specialComp
|
|
7
9
|
|
package/src/reportManage.js
CHANGED
|
@@ -648,6 +648,10 @@ export default function (filiale) {
|
|
|
648
648
|
Vue.component('chargestyle', (resolve) => {
|
|
649
649
|
require(['./components/SellReport/chargestyle'], resolve)
|
|
650
650
|
})
|
|
651
|
+
// 非民用购气使用查询
|
|
652
|
+
Vue.component('feimin_style', (resolve) => {
|
|
653
|
+
require(['./components/SellReport/feimin_style'], resolve)
|
|
654
|
+
})
|
|
651
655
|
if (filiale) {
|
|
652
656
|
let filialeComp = require(`./filiale/${filiale}/reportManage`).specialComp
|
|
653
657
|
Vue.filialeInfo = Vue.prototype.$filialeInfo = filiale
|