manage-client 3.3.188 → 3.3.190
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 +190 -190
- package/package.json +111 -111
- package/src/components/sale/businessquery/ChangeMeterQuery.vue +1 -4
- package/src/components/sale/businessquery/FillGasQuery.vue +1 -1
- package/src/components/sale/config/exportConfig.js +22 -0
- package/src/components/webmeter/WebmeterQuery.vue +3 -0
- package/src/components/webmeter/newwebmeter/WebhandMonthGas.vue +816 -0
- package/src/filiale/qianneng/WebmeterQuery.vue +3 -0
- package/src/filiale/shanxian/EchartsBox.vue +2 -2
- package/src/filiale/tongchuan/GasInspection.vue +34 -0
- package/src/webmeterManage.js +3 -0
- package/.gradle/7.4/checksums/checksums.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/gc.properties +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.bin +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.4/fileChanges/last-build.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.4/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +0 -2
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/.gradle/file-system.probe +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
|
@@ -1446,6 +1446,28 @@ export default {
|
|
|
1446
1446
|
'f_scgas': '实抄气量',
|
|
1447
1447
|
'f_scfee': '实抄金额'
|
|
1448
1448
|
},
|
|
1449
|
+
webhandplanMonthConfig: {
|
|
1450
|
+
'f_userinfo_code': '客户编号',
|
|
1451
|
+
'f_user_name': '客户名称',
|
|
1452
|
+
'f_user_phone': '客户电话',
|
|
1453
|
+
'f_user_state': '客户状态',
|
|
1454
|
+
'f_meter_classify': '气表类型',
|
|
1455
|
+
'f_meternumber': '表号',
|
|
1456
|
+
'f_user_type': '客户类型',
|
|
1457
|
+
'f_gasproperties': '用气性质',
|
|
1458
|
+
'f_table_state': '气表状态',
|
|
1459
|
+
'f_hand_date': '所属月份',
|
|
1460
|
+
'f_start_date': '期初上报时间',
|
|
1461
|
+
'f_end_date': '期末上报时间',
|
|
1462
|
+
'f_balance': '期初余额',
|
|
1463
|
+
'f_last_tablebase': '上期底数',
|
|
1464
|
+
'f_tablebase': '本期底数',
|
|
1465
|
+
'f_oughtamount': '用气量',
|
|
1466
|
+
'f_oughtfee': '用气金额',
|
|
1467
|
+
'f_collection': '期间实收金额',
|
|
1468
|
+
'f_curbalance': '期末余额',
|
|
1469
|
+
'f_orgname': '公司'
|
|
1470
|
+
},
|
|
1449
1471
|
webmetermonthGasConfig: {
|
|
1450
1472
|
'f_userinfo_code': '用户编号',
|
|
1451
1473
|
'f_user_name': '用户姓名',
|
|
@@ -39,6 +39,9 @@
|
|
|
39
39
|
<tabs header="物联网表结算分析" v-if="newWebHand &&permission('物联网表结算分析')">
|
|
40
40
|
<new-webmeter-settlement-analysis v-if="show.includes('物联网表结算分析')"></new-webmeter-settlement-analysis>
|
|
41
41
|
</tabs>
|
|
42
|
+
<tabs header="物联用户月度结算查询" v-if="permission('物联用户月度结算查询')">
|
|
43
|
+
<webhand-month-gas v-if="show.includes('物联用户月度结算查询')"></webhand-month-gas>
|
|
44
|
+
</tabs>
|
|
42
45
|
</tab-button>
|
|
43
46
|
|
|
44
47
|
</template>
|