|
|
|
@ -556,7 +556,7 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11" type="flex">
|
|
|
|
|
<el-form-item label="客户端类型" prop="clientType" show-overflow-tooltip>
|
|
|
|
|
<el-input v-model="formView.clientType" size="small" style="width: 90%" :disabled="true"
|
|
|
|
|
<el-input v-model="this.clientType" size="small" style="width: 90%" :disabled="true"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -786,6 +786,8 @@ import {
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
inOutType: null,
|
|
|
|
|
clientType: null,
|
|
|
|
|
monitorOrder: "", // 接收定时器id,便于清除定时器
|
|
|
|
|
filterQuery: {
|
|
|
|
|
udiCode: null,
|
|
|
|
@ -1024,6 +1026,20 @@ export default {
|
|
|
|
|
if (row.id == obj.id) {
|
|
|
|
|
this.formView = obj
|
|
|
|
|
}
|
|
|
|
|
if (this.formView.inOutType == '1') {
|
|
|
|
|
this.inOutType = "入库"
|
|
|
|
|
}else {
|
|
|
|
|
this.inOutType = "出库"
|
|
|
|
|
}
|
|
|
|
|
if (this.formView.clientType == '1') {
|
|
|
|
|
this.clientType = "模拟测试客户端"
|
|
|
|
|
}else if (this.formView.clientType == '2'){
|
|
|
|
|
this.clientType = "UDI自助平台"
|
|
|
|
|
}else if (this.formView.clientType == '3'){
|
|
|
|
|
this.clientType = "UDI管理系统"
|
|
|
|
|
}else if (this.formView.clientType == '4'){
|
|
|
|
|
this.clientType = "UDIMS平台"
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
this.open = true
|
|
|
|
|
},
|
|
|
|
|