manage-client 3.3.177 → 3.3.179

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.
Files changed (42) hide show
  1. package/build/dev-server.js +7 -11
  2. package/gradle/wrapper/gradle-wrapper.properties +5 -5
  3. package/gradlew +234 -234
  4. package/gradlew.bat +89 -89
  5. package/package.json +2 -2
  6. package/src/components/SellReport/BusinessClassify.vue +292 -292
  7. package/src/components/SellReport/GasMoneyPublicConReport.vue +258 -258
  8. package/src/components/handReport/WebGastypeMonthReport.vue +190 -190
  9. package/src/components/sale/businessquery/BusinessManage.vue +212 -212
  10. package/src/components/sale/businessquery/CardHandplanQuery.vue +546 -546
  11. package/src/components/sale/businessquery/FMYGasQuery.vue +813 -813
  12. package/src/components/sale/businessquery/TransferQuery.vue +502 -502
  13. package/src/components/sale/businessquery/WebMeterMonthUserGasQuery.vue +471 -471
  14. package/src/components/sale/config/exportConfig.js +1245 -1245
  15. package/src/components/sale/filesquery/RecordInfoQuery.vue +1443 -1443
  16. package/src/components/webmeter/gasStatistics/GasStatistics.vue +525 -525
  17. package/src/components/webmeter/gasStatistics/NewGasStatistics.vue +541 -541
  18. package/src/filiale/WEINAN/InspectListGas.vue +616 -616
  19. package/src/filiale/jingyang/RechargeList.vue +346 -346
  20. package/src/filiale/jingyang/sale.js +6 -6
  21. package/src/filiale/liaoyuan/HandplanQuery.vue +1289 -1289
  22. package/src/filiale/meihekou/CardHandplanQuery.vue +664 -664
  23. package/src/filiale/meihekou/ChargeQuery.vue +1274 -1265
  24. package/src/filiale/meihekou/HandplanQuery.vue +1248 -1240
  25. package/src/filiale/ningjin/UserLostContactAnalysis.vue +623 -623
  26. package/src/filiale/qianneng/exportConfig.js +232 -232
  27. package/src/filiale/shaoguan/errorHandplanQuery.vue +386 -386
  28. package/src/filiale/taizhoukesi/ChangeMeterQuery.vue +683 -0
  29. package/src/filiale/taizhoukesi/config/exportConfig.js +2379 -2377
  30. package/src/filiale/taizhoukesi/sale.js +11 -7
  31. package/src/filiale/tongchuan/InspectListGas.vue +700 -700
  32. package/src/filiale/tongchuan/ResSelectGroupNew.vue +188 -188
  33. package/src/filiale/yangchun/ManageBusSummaryNew.vue +239 -239
  34. package/src/filiale/yangchun/UserQuery.vue +980 -980
  35. package/src/filiale/yangchun/config/DefaultPrint.js +6 -6
  36. package/src/filiale/yangchun/config/exportConfig.js +1231 -1231
  37. package/src/filiale/yangchun/config/tableConfig.js +58 -58
  38. package/src/filiale/yangchun/reportManage.js +6 -6
  39. package/src/filiale/yangchun/sale.js +8 -8
  40. package/src/filiale/yangchun/webmeterManage.js +5 -5
  41. package/src/reportManage.js +768 -768
  42. package/src/saleManage.js +689 -689
@@ -1,7 +1,11 @@
1
- // 分公司特殊组件页面注册
2
- import Vue from 'vue'
3
-
4
- export default function () {
5
- // 用气查询
6
- Vue.component('fmygas-query', (resolve) => { require(['./FMYGasQuery'], resolve) })
7
- }
1
+ // 分公司特殊组件页面注册
2
+ import Vue from 'vue'
3
+
4
+ export default function () {
5
+ // 用气查询
6
+ Vue.component('fmygas-query', (resolve) => { require(['./FMYGasQuery'], resolve) })
7
+ // 换表查询
8
+ Vue.component('change-meter-query', (resolve) => {
9
+ require(['./ChangeMeterQuery'], resolve)
10
+ })
11
+ }