manage-client 3.3.67 → 3.3.68
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/package.json
CHANGED
|
@@ -308,7 +308,7 @@
|
|
|
308
308
|
<v-select :value.sync="model.f_terminal_name" multiple
|
|
309
309
|
v-model="model.f_terminal_name"
|
|
310
310
|
:options='$parent.$parent.posEquipment' placeholder='请选择'
|
|
311
|
-
condition="
|
|
311
|
+
condition="f_terminal_num in {}"
|
|
312
312
|
close-on-select></v-select>
|
|
313
313
|
</div>
|
|
314
314
|
<div class="col-sm-2 form-group">
|
|
@@ -977,14 +977,14 @@
|
|
|
977
977
|
async getEquipment () {
|
|
978
978
|
let HttpReset = new HttpResetClass()
|
|
979
979
|
let param = {
|
|
980
|
-
items: 'f_terminal_name',
|
|
980
|
+
items: 'f_terminal_name,f_terminal_number',
|
|
981
981
|
tablename: 't_equipment',
|
|
982
982
|
condition: `f_equipment_type = 'POS' and f_state = '正常' and f_orgid = '${this.$login.f.orgid}'`,
|
|
983
983
|
orderitem: 'id'
|
|
984
984
|
}
|
|
985
985
|
var data = await HttpReset.load('POST', 'rs/sql/manage_singleTable', {data: param}, {resolveMsg: null, rejectMsg: '获取设备列表失败!'})
|
|
986
986
|
for (let row of data.data) {
|
|
987
|
-
this.posEquipment.push({label: row.f_terminal_name, value: row.
|
|
987
|
+
this.posEquipment.push({label: row.f_terminal_name, value: row.f_terminal_number})
|
|
988
988
|
}
|
|
989
989
|
},
|
|
990
990
|
openBill(row){
|
|
@@ -252,7 +252,8 @@ export default {
|
|
|
252
252
|
'f_stair3fee': '三阶气费',
|
|
253
253
|
'f_inputtor': '抄表员',
|
|
254
254
|
'f_residential_area': '小区',
|
|
255
|
-
'f_serial_number': '业务单号'
|
|
255
|
+
'f_serial_number': '业务单号',
|
|
256
|
+
'f_terminal_num': '终端号'
|
|
256
257
|
},
|
|
257
258
|
loginQueryConfig: {
|
|
258
259
|
'userid': '登录人编号', 'username': '登录人名称', 'logindate': '登录时间', 'type': '类型'
|