manage-client 3.3.212 → 3.3.214

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 (28) hide show
  1. package/.gradle/7.4/checksums/checksums.lock +0 -0
  2. package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
  3. package/.gradle/7.4/dependencies-accessors/gc.properties +0 -0
  4. package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
  5. package/.gradle/7.4/fileChanges/last-build.bin +0 -0
  6. package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
  7. package/.gradle/7.4/gc.properties +0 -0
  8. package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  9. package/.gradle/buildOutputCleanup/cache.properties +2 -0
  10. package/.gradle/vcs-1/gc.properties +0 -0
  11. package/package.json +1 -1
  12. package/src/filiale/bayan/ChargeQuery.vue +1436 -0
  13. package/src/{components/sale/common → filiale/bayan}/PrintTableManage.vue +1 -1
  14. package/src/filiale/bayan/sale.js +8 -0
  15. package/src/filiale/hantou/ChangeMeterQuery.vue +699 -0
  16. package/src/filiale/hantou/config/DefaultPrint.js +6 -0
  17. package/src/filiale/hantou/config/exportConfig.js +2667 -0
  18. package/src/filiale/hantou/config/tableConfig.js +54 -0
  19. package/src/filiale/hantou/sale.js +8 -0
  20. package/src/filiale/shangluo/HandplanQuery.vue +1376 -0
  21. package/src/filiale/shangluo/sale.js +10 -0
  22. package/src/filiale/shangluo/webmeter/PriceInstructList.vue +303 -0
  23. package/src/filiale/shangluo/webmeter/UserInstructList.vue +304 -0
  24. package/src/filiale/shangluo/webmeter/WebmeterSettlementAnalysis.vue +432 -0
  25. package/src/saleManage.js +0 -2
  26. package/.npmignore +0 -10
  27. package/build/.npmignore +0 -1
  28. package/package-lock.json +0 -28484
@@ -4,7 +4,7 @@
4
4
 
5
5
  <script>
6
6
  import co from 'co'
7
- import getLodop from '../../../plugins/LodopFuncs'
7
+ import getLodop from '../../plugins/LodopFuncs'
8
8
 
9
9
  let printGen = function * (self, pageNo) {
10
10
 
@@ -0,0 +1,8 @@
1
+ // 分公司特殊组件页面注册
2
+ import Vue from 'vue'
3
+
4
+ export default function () {
5
+ Vue.component('charge-query', (resolve) => { require(['./ChargeQuery'], resolve) })
6
+ // 打印
7
+ Vue.component('print-table', (resolve) => { require(['./PrintTableManage'], resolve) })
8
+ }