manage-client 3.2.179 → 3.2.181
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 +8 -2
- package/package.json +1 -1
- package/src/components/sale/config/exportConfig.js +1 -1
- package/src/filiale/kelai/AreaChargeQuery.vue +1 -1
- package/src/filiale/kelai/exportConfig.js +1 -1
- package/src/filiale/qianneng/RecordInfoQuery.vue +1287 -0
- package/src/filiale/qianneng/exportConfig.js +22 -0
- package/src/filiale/qianneng/sale.js +3 -1
- package/src/filiale/rizhao/MeterQuery.vue +985 -0
- package/src/filiale/rizhao/config/exportConfig.js +1080 -0
- package/src/filiale/rizhao/sale.js +3 -0
- package/src/filiale/tongchuan/ChargeQuery.vue +1 -1
- package/src/filiale/zhongyi/FillCardQuery.vue +581 -0
- package/src/filiale/zhongyi/GasStatistics.vue +22 -0
- package/src/filiale/zhongyi/LostContactAnalysisList.vue +650 -0
- package/src/filiale/zhongyi/exportConfig.js +1080 -0
- package/src/filiale/zhongyi/sale.js +2 -3
- package/src/filiale/zhongyi/webmeterManage.js +12 -0
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
// 分公司特殊组件页面注册
|
|
2
2
|
let specialComp = {
|
|
3
|
-
// 物联网表用气量统计表
|
|
4
|
-
'use-gas-statistics': (resolve) => { require(['./GasStatistics'], resolve) },
|
|
5
|
-
|
|
6
3
|
// 物联网表用气量统计表
|
|
7
4
|
'call-report-main-page': (resolve) => { require(['./CallReport/CallReportMainPage'], resolve) },
|
|
8
5
|
// // 物联网表用气量统计表
|
|
@@ -39,6 +36,8 @@ let specialComp = {
|
|
|
39
36
|
|
|
40
37
|
//分公司下拉框
|
|
41
38
|
'drop-down-box':(resolve) => { require(['./CallReport/DropDownBox'], resolve) },
|
|
39
|
+
//补卡查询
|
|
40
|
+
'fill-card-query':(resolve) => { require(['./FillCardQuery'], resolve) },
|
|
42
41
|
}
|
|
43
42
|
exports.specialComp = specialComp
|
|
44
43
|
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// 分公司特殊组件页面注册
|
|
2
|
+
let specialComp = {
|
|
3
|
+
// 物联网表用气量统计表
|
|
4
|
+
'use-gas-statistics': (resolve) => { require(['./GasStatistics'], resolve) },
|
|
5
|
+
//失联查询
|
|
6
|
+
'lost-contact-analysis-list': (resolve) => { require(['./LostContactAnalysisList'], resolve) },
|
|
7
|
+
}
|
|
8
|
+
exports.specialComp = specialComp
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|