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.
- package/.gradle/{7.1 → 5.2.1}/fileChanges/last-build.bin +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/{7.1/dependencies-accessors → 5.2.1}/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -2
- package/build/dev-server.js +3 -3
- package/package.json +1 -1
- package/src/components/FilesManage/UserGeneralInfoTest.vue +3 -2
- package/src/components/charge/business/CardChangeFill.vue +2 -5
- package/src/filiale/gehua/DepositCharge.vue +461 -461
- package/src/filiale/gehua/MachineMeterCenter.vue +685 -685
- package/src/filiale/gehua/OverUseCharge.vue +421 -421
- package/src/filiale/gehua/ReplaceCardManage.vue +422 -422
- package/src/filiale/gehua/sale.js +28 -28
- package/src/filiale/meihekou/batch/batchEditFiles.vue +307 -0
- package/src/filiale/meihekou/batch/batchEditHistory.vue +93 -0
- package/src/filiale/meihekou/batch/batchEditManage.vue +132 -0
- package/src/filiale/meihekou/batch/batchEditOperate.vue +52 -0
- package/src/filiale/meihekou/batch/batchUserList.vue +456 -0
- package/src/filiale/meihekou/handOperate.vue +458 -0
- package/src/filiale/meihekou/sale.js +45 -39
- package/src/filiale/qianneng/revenue/comprehen/ReloadingTable.vue +76 -76
- package/src/filiale/qianneng/sale.js +87 -87
- package/src/filiale/tongchuan/MeterinfoTest.vue +1 -1
- package/src/filiale/tongchuan/UserGeneralInfoTest.vue +1 -0
- package/src/filiale/tongchuan/plugins/FileManageService.js +1 -0
- package/src/filiale/xinkang/WebMeterBatchOperationValve.vue +783 -782
- package/src/main.js +1 -1
- package/src/plugins/FileManageService.js +1 -0
- package/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/7.1/executionHistory/executionHistory.bin +0 -0
- package/.gradle/7.1/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.1/fileHashes/fileHashes.bin +0 -0
- package/.gradle/7.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.1/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/.gradle/checksums/checksums.lock +0 -0
- package/yarn-error.log +0 -8856
|
File without changes
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#
|
|
2
|
-
gradle.version=
|
|
1
|
+
#Thu Nov 10 15:53:56 CST 2022
|
|
2
|
+
gradle.version=5.2.1
|
package/build/dev-server.js
CHANGED
|
@@ -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
|
-
|
|
16
|
-
var fuwu = 'http://
|
|
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:
|
|
130
|
+
target: fuwu
|
|
131
131
|
},
|
|
132
132
|
'/rs': {
|
|
133
133
|
// target: 'http://192.168.30.63:8081/'
|
package/package.json
CHANGED
|
@@ -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']">
|