manage-client 4.0.21 → 4.0.23

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 (39) hide show
  1. package/.gradle/8.5/checksums/checksums.lock +0 -0
  2. package/.gradle/8.5/dependencies-accessors/dependencies-accessors.lock +0 -0
  3. package/.gradle/8.5/dependencies-accessors/gc.properties +0 -0
  4. package/.gradle/8.5/executionHistory/executionHistory.bin +0 -0
  5. package/.gradle/8.5/executionHistory/executionHistory.lock +0 -0
  6. package/.gradle/8.5/fileChanges/last-build.bin +0 -0
  7. package/.gradle/8.5/fileHashes/fileHashes.bin +0 -0
  8. package/.gradle/8.5/fileHashes/fileHashes.lock +0 -0
  9. package/.gradle/8.5/gc.properties +0 -0
  10. package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  11. package/.gradle/buildOutputCleanup/cache.properties +2 -0
  12. package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
  13. package/.gradle/file-system.probe +0 -0
  14. package/.gradle/vcs-1/gc.properties +0 -0
  15. package/package.json +1 -1
  16. package/src/filiale/fugou/WebHandplanQuery.vue +1016 -0
  17. package/src/filiale/fugou/sale.js +4 -0
  18. package/src/filiale/tongchuan/ChangeMeterQuery.vue +702 -0
  19. package/src/filiale/tongchuan/ChangeUserQuery.vue +395 -0
  20. package/src/filiale/tongchuan/ChargeQuery.vue +7 -4
  21. package/src/filiale/tongchuan/DeviceQuery.vue +4 -2
  22. package/src/filiale/tongchuan/DisableQuery.vue +523 -0
  23. package/src/filiale/tongchuan/FillCardQuery.vue +573 -0
  24. package/src/filiale/tongchuan/FillGasQuery.vue +2 -2
  25. package/src/filiale/tongchuan/FmyGasDeviceQuery.vue +870 -0
  26. package/src/filiale/tongchuan/GasDeviceQuery.vue +982 -0
  27. package/src/filiale/tongchuan/HandplanQuery.vue +2 -1
  28. package/src/filiale/tongchuan/PriceChangeQuery.vue +6 -3
  29. package/src/filiale/tongchuan/ReverseQuery.vue +450 -0
  30. package/src/filiale/tongchuan/UserDeviceQuery.vue +4 -2
  31. package/src/filiale/tongchuan/UserQuery.vue +2 -1
  32. package/src/filiale/tongchuan/gasPriceQuery.vue +381 -0
  33. package/src/filiale/tongchuan/sale.js +36 -1
  34. package/src/filiale/tongchuan/sellingChargePrice.vue +714 -0
  35. package/src/filiale/yangchun/UserQuery.vue +26 -0
  36. package/src/filiale/yangchun/config/exportConfig.js +2 -1
  37. package/src/filiale/jinbin/exportConfig.js +0 -1110
  38. package/src/filiale/jinbin/sale/businessquery/ChargeQuery.vue +0 -1372
  39. package/src/filiale/jinbin/sale.js +0 -7
@@ -12,4 +12,8 @@ export default function () {
12
12
  Vue.component('reverse-query', (resolve) => {
13
13
  require(['./ReverseQuery'], resolve)
14
14
  })
15
+ // 物联网抄表查询
16
+ Vue.component('web-handplan-query', (resolve) => {
17
+ require(['./WebHandplanQuery'], resolve)
18
+ })
15
19
  }