单据详情页面优化

master
schry 2 years ago
parent a03c343754
commit cfeed3d1aa

@ -682,7 +682,7 @@
</el-col>
<el-col :span="11" type="flex">
<el-form-item label="客户端类型" prop="clientType" show-overflow-tooltip>
<el-input v-model="orderFormView.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>
@ -909,6 +909,7 @@ import {getTraceRecordList, getTraceOrder, getManuOrder, getManuCodeRelList, get
export default {
data() {
return {
clientType: null,
inOutType: null,
openManuOrder: false,
manuOrderFormView: {},

@ -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
},

@ -556,7 +556,7 @@
</el-col>
<el-col :span="11" type="flex">
<el-form-item label="客户端类型" prop="clientType">
<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>
@ -1059,6 +1059,20 @@ export default {
// this.formView.inOutType = ""
// }
}
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平台"
}
})
console.log(this.formView)
this.open = true

Loading…
Cancel
Save