sale-client 3.6.152 → 3.6.153
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/build/dev-server.js +1 -1
- package/package.json +1 -1
- package/src/components/charge/business/IOTMeterCenter.vue +2 -2
- package/src/components/common/userinfo_detail/UserBaseInfo.vue +2 -2
- package/src/components/revenue/comprehen/Maintenance/pictureManage/pictureListMaintain.vue +5 -1
- package/src/filiale/yuncheng/FilesManage/MeterinfoTest.vue +1050 -0
- package/src/filiale/yuncheng/FilesManageNew/MeterinfoTest.vue +621 -0
- package/src/filiale/yuncheng/sale.js +4 -0
- package/src/filiale/zhongsheng/FilesManage/UserFireInfo.vue +450 -0
- package/src/filiale/zhongsheng/FilesManage/UserMeterInfoTest.vue +163 -0
- package/src/filiale/zhongsheng/sale.js +4 -0
package/build/dev-server.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
var path = require('path')
|
|
2
|
-
const [ serverRul, localUrl ] = ['http://192.168.50.4:8400/', 'http://
|
|
2
|
+
const [ serverRul, localUrl ] = ['http://192.168.50.4:8400/', 'http://192.168.50.4:8400/']
|
|
3
3
|
var merge = require('webpack-merge')
|
|
4
4
|
var baseConfig = require('./webpack.dev.conf')
|
|
5
5
|
var devConfig = {
|
package/package.json
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
<div class="col-sm-4 form-group"
|
|
37
37
|
:class="[$v.f_preamount.required || $v.f_preamount.dctest? 'has-error' : 'has-success']">
|
|
38
38
|
<label for="f_preamount" class=" font_normal_body">预购金额</label>
|
|
39
|
-
<input class="input_search" style="width:60%" @blur="preamount()" type="number" v-model="model.f_preamount"
|
|
39
|
+
<input class="input_search" style="width:60%" @blur="preamount()" type="number" v-model="model.f_preamount" id="f_preamount"
|
|
40
40
|
v-validate:f_preamount='{required: true, dctest: [maxmoney, "<=" ] }'
|
|
41
41
|
:disabled="config.calculatePreByCollection"
|
|
42
42
|
v-scale="[model.f_preamount, row.f_fee_decimal||4]" placeholder="预购金额" >
|
|
@@ -554,7 +554,7 @@
|
|
|
554
554
|
this.model.f_balance = this.row.f_alias === 'QiaoSong' ? Math.trunc(this.row.f_balance) : this.row.f_balance
|
|
555
555
|
this.model.f_preamount = ''
|
|
556
556
|
this.model.f_pregas = ''
|
|
557
|
-
document.getElementById('
|
|
557
|
+
document.getElementById('f_preamount').focus()
|
|
558
558
|
asyncCardMeterCenter(this)
|
|
559
559
|
this.getRandomId()
|
|
560
560
|
},
|
|
@@ -178,8 +178,8 @@
|
|
|
178
178
|
<label class="col-sm-3 control-label">阀门状态</label>
|
|
179
179
|
<div class="col-sm-3">
|
|
180
180
|
<p class="form-control-static">
|
|
181
|
-
{{row.f_valvestate
|
|
182
|
-
<button class="btn btn-link" type="button" style="margin-left: 20%" @click="valvecontrol">{{row.f_valvestate
|
|
181
|
+
{{row.f_valvestate === '0' ? '已开阀' : '已关阀'}}
|
|
182
|
+
<button class="btn btn-link" type="button" style="margin-left: 20%" @click="valvecontrol">{{row.f_valvestate === '0' ? '关阀' : '开阀'}}</button>
|
|
183
183
|
</p>
|
|
184
184
|
</div>
|
|
185
185
|
</div>
|
|
@@ -317,7 +317,11 @@ const myMap = new Map()
|
|
|
317
317
|
}
|
|
318
318
|
let temp = res.data.array[j].f_downloadpath
|
|
319
319
|
let URL = temp.substring(temp.lastIndexOf(':\\') + 2)
|
|
320
|
-
res.data.array[j].
|
|
320
|
+
if(res.data.array[j].fusetype == '安检照片') {
|
|
321
|
+
res.data.array[j].f_downloadURL = 'http://' + location.host + '/rs/image/file/' + res.data.array[j].f_filename
|
|
322
|
+
}else {
|
|
323
|
+
res.data.array[j].f_downloadURL = 'http://' + location.host + '/' + URL
|
|
324
|
+
}
|
|
321
325
|
this.files[i].arrays.push(res.data.array[j])
|
|
322
326
|
}
|
|
323
327
|
}
|