sale-client 3.5.107 → 3.5.109

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 (38) hide show
  1. package/.gradle/{7.1 → 5.2.1}/fileChanges/last-build.bin +0 -0
  2. package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
  3. package/.gradle/{7.1/dependencies-accessors → 5.2.1}/gc.properties +0 -0
  4. package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  5. package/.gradle/buildOutputCleanup/cache.properties +2 -2
  6. package/build/dev-server.js +3 -3
  7. package/package.json +1 -1
  8. package/src/components/FilesManage/UserGeneralInfoTest.vue +3 -2
  9. package/src/components/charge/business/CardChangeFill.vue +2 -5
  10. package/src/filiale/gehua/DepositCharge.vue +461 -461
  11. package/src/filiale/gehua/MachineMeterCenter.vue +685 -685
  12. package/src/filiale/gehua/OverUseCharge.vue +421 -421
  13. package/src/filiale/gehua/ReplaceCardManage.vue +422 -422
  14. package/src/filiale/gehua/sale.js +28 -28
  15. package/src/filiale/meihekou/batch/batchEditFiles.vue +307 -0
  16. package/src/filiale/meihekou/batch/batchEditHistory.vue +93 -0
  17. package/src/filiale/meihekou/batch/batchEditManage.vue +132 -0
  18. package/src/filiale/meihekou/batch/batchEditOperate.vue +52 -0
  19. package/src/filiale/meihekou/batch/batchUserList.vue +456 -0
  20. package/src/filiale/meihekou/handOperate.vue +458 -0
  21. package/src/filiale/meihekou/sale.js +45 -39
  22. package/src/filiale/qianneng/revenue/comprehen/ReloadingTable.vue +76 -76
  23. package/src/filiale/qianneng/sale.js +87 -87
  24. package/src/filiale/tongchuan/MeterinfoTest.vue +1 -1
  25. package/src/filiale/tongchuan/UserGeneralInfoTest.vue +1 -0
  26. package/src/filiale/tongchuan/plugins/FileManageService.js +1 -0
  27. package/src/filiale/xinkang/WebMeterBatchOperationValve.vue +783 -782
  28. package/src/main.js +1 -1
  29. package/src/plugins/FileManageService.js +1 -0
  30. package/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock +0 -0
  31. package/.gradle/7.1/executionHistory/executionHistory.bin +0 -0
  32. package/.gradle/7.1/executionHistory/executionHistory.lock +0 -0
  33. package/.gradle/7.1/fileHashes/fileHashes.bin +0 -0
  34. package/.gradle/7.1/fileHashes/fileHashes.lock +0 -0
  35. package/.gradle/7.1/gc.properties +0 -0
  36. package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
  37. package/.gradle/checksums/checksums.lock +0 -0
  38. package/yarn-error.log +0 -8856
@@ -1,2 +1,2 @@
1
- #Sat Oct 29 10:26:43 CST 2022
2
- gradle.version=7.1
1
+ #Thu Nov 10 15:53:56 CST 2022
2
+ gradle.version=5.2.1
@@ -12,8 +12,8 @@ var compiler = webpack(config)
12
12
  // https://github.com/chimurai/http-proxy-middleware
13
13
  var bendi = 'http://121.36.106.17:8400', bendi1 = 'http://121.36.106.17:8400/'
14
14
  // 公司测试服务
15
- // var fuwu = 'http://192.168.50.4:8400'
16
- var fuwu = 'http://219.138.226.181:8401'
15
+ var fuwu = 'http://192.168.50.4:8400'
16
+ //var fuwu = 'http://39.99.85.14:8400'
17
17
  // var fuwu = 'http://121.36.106.17:8400/'
18
18
  // 铜川正式
19
19
  // var fuwu = 'http://61.134.55.234:9999/'
@@ -127,7 +127,7 @@ var proxyTable = {
127
127
  target: fuwu
128
128
  },
129
129
  '/webmeter': {
130
- target: 'http://192.168.50.4:8450'
130
+ target: fuwu
131
131
  },
132
132
  '/rs': {
133
133
  // target: 'http://192.168.30.63:8081/'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.5.107",
3
+ "version": "3.5.109",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -481,8 +481,9 @@ export default {
481
481
  row.f_garbage_fee = row.f_garbage_fee ? row.f_garbage_fee : ''
482
482
  row.f_valve_state = row.f_valve_state ? [row.f_valve_state] : ''
483
483
  row.f_usetype = row.f_usetype ? [row.f_usetype] : ''
484
- row.f_usestate = row.f_usestate.length > 0 ? [row.f_usestate] : ''
485
- row.f_meter_book_num = row.f_meter_book_num.length > 0 ? [row.f_meter_book_num] : ''
484
+ row.f_usestate = row.f_usestate && row.f_usestate.length > 0 ? [row.f_usestate] : ''
485
+ row.f_meter_book_num = row.f_meter_book_num && row.f_meter_book_num.length > 0 ? [row.f_meter_book_num] : ''
486
+ row.f_userfiles_address = row.f_userfiles_address && row.f_userfiles_address.length > 0 ? [row.f_userfiles_address] : ''
486
487
  row.f_inputtor = row.f_inputtor ? [row.f_inputtor] : ''
487
488
  row.f_position = row.f_position ? [row.f_position] : ''
488
489
 
@@ -60,13 +60,10 @@
60
60
  close-on-select clear-button v-ref:printstyle>
61
61
  </v-select>
62
62
  </div>
63
- <div class="col-sm-4 form-group"
64
- :class="[$v.f_pregas.required || $v.f_pregas.dctest? 'has-error' : 'has-success']">
63
+ <div class="col-sm-4 form-group" >
65
64
  <label for="f_pregas" class=" font_normal_body">写卡气量</label>
66
65
  <input class="input_search" style="width:60%" type="number"
67
- v-model="model.f_pregas"
68
- v-validate:f_pregas='{required: true, dctest: [maxgas, "<=" ]}' placeholder="写卡气量"
69
- v-next-el='sk' disabled>
66
+ v-model="model.f_pregas" placeholder="写卡气量" disabled>
70
67
  </div>
71
68
  <div class="col-sm-4 form-group"
72
69
  :class="[$v.f_totalcost.required || $v.f_totalcost.dctest ? 'has-error' : 'has-success']">