manage-client 3.2.288 → 3.2.290
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/sale/businessquery/CollectManage.vue +3 -0
- package/src/components/sale/businessquery/NewAreaGeneralQuery.vue +1 -1
- package/src/components/sale/businessquery/NewFMYGasQuery.vue +730 -0
- package/src/filiale/ancheng/businessquery/ChargeQuery.vue +1344 -0
- package/src/filiale/ancheng/sale.js +9 -0
- package/src/filiale/rongcheng/AreaBuildingDetailInfo.vue +281 -0
- package/src/filiale/rongcheng/AreaBuildingInfoSummary.vue +301 -0
- package/src/filiale/rongcheng/exportConfig.js +448 -173
- package/src/filiale/rongcheng/sale.js +3 -0
- package/src/filiale/wenxi/ManageUserTypeSell.vue +11 -1
- package/src/filiale/xinkang/GasStatistics.vue +517 -0
- package/src/filiale/xinkang/NewGasStatistics.vue +526 -0
- package/src/filiale/xinkang/webmeterManage.js +9 -0
- package/src/filiale/zhongyi/GasStatistics.vue +1 -1
- package/src/saleManage.js +4 -0
package/package.json
CHANGED
|
@@ -39,6 +39,9 @@
|
|
|
39
39
|
<tabs header="用气查询" v-if="permission('用气查询')">
|
|
40
40
|
<fmygas-query v-if="show.includes('用气查询')" @deal-msg="dealMsg"></fmygas-query>
|
|
41
41
|
</tabs>
|
|
42
|
+
<tabs header="物联网用气查询" v-if="newWebHand && permission('用气查询')">
|
|
43
|
+
<newfmygas-query v-if="show.includes('用气查询')" @deal-msg="dealMsg"></newfmygas-query>
|
|
44
|
+
</tabs>
|
|
42
45
|
<tabs header="气费回收率" v-if="permission('气费回收率')">
|
|
43
46
|
<hand-rate-query v-if="show.includes('气费回收率')" @deal-msg="dealMsg"></hand-rate-query>
|
|
44
47
|
</tabs>
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
:footer="$parent.$parent.footer"
|
|
66
66
|
:header="$parent.$parent.other"
|
|
67
67
|
sqlurl="rs/logic/exportfile"
|
|
68
|
-
sql-name="
|
|
68
|
+
sql-name="newAreaGeneralQuery"
|
|
69
69
|
template-name='小区综合查询导出'
|
|
70
70
|
:choose-col="true"></export-excel>
|
|
71
71
|
<print-data :sum-field="$parent.$parent.getfield" :model="$parent.model" :field="$parent.$parent.getfield"
|