manage-client 4.1.78 → 4.1.79-yangchunboneng
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/.eslintrc.js +3 -1
- package/package.json +1 -1
- package/src/components/sale/config/exportConfig.js +1 -5
- package/src/filiale/bazhong/ReportDataQuery.vue +319 -319
- package/src/filiale/bazhong/config/DefaultPrint.js +6 -6
- package/src/filiale/bazhong/config/DefaultSelect.js +18 -18
- package/src/filiale/bazhong/config/exportConfig.js +2775 -2775
- package/src/filiale/bazhong/config/tableConfig.js +53 -53
- package/src/filiale/bazhong/webmeterManage.js +7 -7
- package/src/filiale/qingjian/MeterQuery.vue +1 -1
- package/src/filiale/shimen/UserQuery.vue +1008 -1008
- package/src/filiale/shimen/config/DefaultPrint.js +14 -14
- package/src/filiale/shimen/config/DefaultSelect.js +18 -18
- package/src/filiale/shimen/config/tableConfig.js +53 -53
- package/src/filiale/tongchuan/GasInspection.vue +756 -756
- package/src/filiale/xinjiangdexin/RecordInfoQuery.vue +1 -1
- package/src/filiale/xinjiangdexin/config/exportConfig.js +4 -1
- package/src/filiale/yangchun/ArchivesManage.vue +89 -89
- package/src/filiale/yangchun/OtherChargeQuery.vue +2 -2
- package/src/main.js +15 -13
package/.eslintrc.js
CHANGED
|
@@ -15,6 +15,8 @@ module.exports = {
|
|
|
15
15
|
// allow debugger during development
|
|
16
16
|
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
|
|
17
17
|
// 必须使用全等
|
|
18
|
-
'eqeqeq': 0
|
|
18
|
+
'eqeqeq': 0,
|
|
19
|
+
"import/no-unresolved": ["error", { "caseSensitive": true }],
|
|
20
|
+
"camelcase": "off"
|
|
19
21
|
}
|
|
20
22
|
}
|
package/package.json
CHANGED
|
@@ -643,7 +643,6 @@ export default {
|
|
|
643
643
|
'f_is_mgq': '是否煤改气',
|
|
644
644
|
'f_send_usegas_card': '是否发放天然气使用证',
|
|
645
645
|
'f_meter_style': '型号',
|
|
646
|
-
'f_xc_meter_style': '现场表具型号',
|
|
647
646
|
'f_table_state': '表具状态',
|
|
648
647
|
'f_initial_base': '初始气表底数',
|
|
649
648
|
'f_total_usegas_amount': '累计用气金额',
|
|
@@ -674,10 +673,7 @@ export default {
|
|
|
674
673
|
'f_devices_type': '灶具信息',
|
|
675
674
|
'f_network_valve': '自动阀控',
|
|
676
675
|
'f_defendcard': '防盗卡号',
|
|
677
|
-
'f_factory_date': '生产年月'
|
|
678
|
-
'f_meteread_date': '最后通讯时间',
|
|
679
|
-
'f_xiaohushijian': '销户时间',
|
|
680
|
-
'f_xiaohuyuanyin': '销户原因'
|
|
676
|
+
'f_factory_date': '生产年月'
|
|
681
677
|
// 'latest_f_pregas' : '最后购气量',
|
|
682
678
|
// 'latest_f_collection':'最后购气金额',
|
|
683
679
|
// 'f_max_operate_date': '最后购气日期'
|