单据详情页面优化

master
schry 2 years ago
parent c1e0f1cf16
commit 3d5d534028

@ -754,7 +754,7 @@
<el-row type="flex"> <el-row type="flex">
<el-col :span="11" type="flex"> <el-col :span="11" type="flex">
<el-form-item label="查询场景" prop="traceSource" show-overflow-tooltip> <el-form-item label="查询场景" prop="traceSource" show-overflow-tooltip>
<el-input v-model="traceSourceText" size="small" style="width: 90%" :disabled="true" <el-input v-model="this.traceSource" size="small" style="width: 90%" :disabled="true"
></el-input> ></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
@ -909,6 +909,7 @@ import {getTraceRecordList, getTraceOrder, getManuOrder, getManuCodeRelList, get
export default { export default {
data() { data() {
return { return {
traceSource: null,
clientType: null, clientType: null,
inOutType: null, inOutType: null,
openManuOrder: false, openManuOrder: false,
@ -1008,6 +1009,11 @@ export default {
}else if (this.orderFormView.clientType == '4'){ }else if (this.orderFormView.clientType == '4'){
this.clientType = "UDIMS平台" this.clientType = "UDIMS平台"
} }
if (this.orderFormView.traceSource == '1') {
this.traceSource = '源头查询'
}else {
this.traceSource = '现场检查查询'
}
}) })
this.orderOpen = true this.orderOpen = true

Loading…
Cancel
Save