sale-client 3.5.51 → 3.5.53

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 (43) hide show
  1. package/.gradle/5.2.1/fileChanges/last-build.bin +0 -0
  2. package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
  3. package/.gradle/5.2.1/gc.properties +0 -0
  4. package/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock +0 -0
  5. package/.gradle/7.1/dependencies-accessors/gc.properties +0 -0
  6. package/.gradle/7.1/executionHistory/executionHistory.bin +0 -0
  7. package/.gradle/7.1/executionHistory/executionHistory.lock +0 -0
  8. package/.gradle/7.1/fileChanges/last-build.bin +0 -0
  9. package/.gradle/7.1/fileHashes/fileHashes.bin +0 -0
  10. package/.gradle/7.1/fileHashes/fileHashes.lock +0 -0
  11. package/.gradle/7.1/gc.properties +0 -0
  12. package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  13. package/.gradle/buildOutputCleanup/cache.properties +2 -0
  14. package/.gradle/checksums/checksums.lock +0 -0
  15. package/.gradle/vcs-1/gc.properties +0 -0
  16. package/build/dev-server.js +4 -4
  17. package/package.json +1 -1
  18. package/src/components/FilesManage/UserGeneralInfoTest.vue +1 -1
  19. package/src/components/FilesManageNew/FileUserFiles.vue +756 -743
  20. package/src/components/chargeBatch/ChargeGroupList.vue +55 -1
  21. package/src/components/chargeBatch/OweRecordQuery.vue +2 -1
  22. package/src/components/revenue/changeInsurance/InsuranceList.vue +271 -258
  23. package/src/components/revenue/comprehen/Maintenance/group/AddWarehousemaingroup.vue +61 -0
  24. package/src/components/revenue/comprehen/Maintenance/group/MeterOperatemaingroup.vue +394 -0
  25. package/src/components/revenue/comprehen/Maintenance/group/StockListmaingroup.vue +477 -0
  26. package/src/components/revenue/comprehen/Maintenance/group/WareHouseOperationmaingroup.vue +45 -0
  27. package/src/components/revenue/comprehen/Maintenance/group/maintenancegroup.vue +149 -0
  28. package/src/components/revenue/machineHandManage/machineHandAudit.vue +10 -22
  29. package/src/filiale/chengtou/components/FilesManage/FileUserFiles.vue +1018 -1018
  30. package/src/filiale/chengtou/components/FilesManage/UserGeneralInfoTest.vue +672 -672
  31. package/src/filiale/chengtou/plugins/FileManageService.js +388 -388
  32. package/src/filiale/chengtou/sale.js +11 -11
  33. package/src/filiale/qianneng/eticket/EticketPrint.vue +6 -8
  34. package/src/filiale/rongcheng/FileUserFiles.vue +881 -877
  35. package/src/filiale/rongcheng/MeterinfoTest.vue +611 -611
  36. package/src/filiale/rongcheng/UserEssentialInfoTest.vue +332 -0
  37. package/src/filiale/rongcheng/sale.js +101 -99
  38. package/src/filiale/rongchuang/MeterinfoTest.vue +752 -758
  39. package/src/filiale/shanggao/PaymentCode.vue +1 -1
  40. package/src/main.js +22 -22
  41. package/src/plugins/FileManageService.js +389 -388
  42. package/src/sale.js +11 -0
  43. package/yarn-error.log +0 -9224
File without changes
File without changes
@@ -0,0 +1,2 @@
1
+ #Sun Oct 09 09:33:58 CST 2022
2
+ gradle.version=5.2.1
Binary file
File without changes
@@ -10,9 +10,9 @@ var compiler = webpack(config)
10
10
 
11
11
  // Define HTTP proxies to your custom API backend
12
12
  // https://github.com/chimurai/http-proxy-middleware
13
- var bendi = 'http://39.108.82.124:8400/', bendi1 = 'http://121.36.106.17:8400/'
13
+ var bendi = 'http://121.36.106.17:8400', bendi1 = 'http://121.36.106.17:8400/'
14
14
  // 公司测试服务
15
- var fuwu = 'http://39.108.82.124:8400/'
15
+ var fuwu = 'http://121.36.106.17:8400'
16
16
  // var fuwu = 'http://121.36.106.17:8400/'
17
17
  // 铜川正式
18
18
  // var fuwu = 'http://61.134.55.234:9999/'
@@ -98,12 +98,12 @@ var proxyTable = {
98
98
  target: fuwu
99
99
  },
100
100
  '/webmeter': {
101
- target: fuwu
101
+ target: 'http://192.168.50.4:8450'
102
102
  },
103
103
  '/rs': {
104
104
  // target: 'http://192.168.30.63:8081/'
105
105
  // target: 'http://121.36.106.17:8400/'
106
- target: bendi
106
+ target: 'http://127.0.0.1:8080'
107
107
  }
108
108
  }
109
109
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.5.51",
3
+ "version": "3.5.53",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -93,7 +93,7 @@
93
93
  </div>
94
94
  <div class="row">
95
95
  <div class="col-sm-2"></div>
96
- <input v-if="fileSaveData.reason ==='其他'" class="input_search" style="width:60%" placeholder='修改原因' v-model="fileSaveData.modifyReason"/>
96
+ <input v-if="fileSaveData.reason==='其他'" class="input_search" style="width:60%" placeholder='修改原因' v-model="fileSaveData.modifyReason"/>
97
97
  </div>
98
98
  </article>
99
99
  <footer slot="modal-footer" class="modal-footer">