diff --git a/src/views/udi/trace/history/index.vue b/src/views/udi/trace/history/index.vue index 387e248..2d7d2d1 100644 --- a/src/views/udi/trace/history/index.vue +++ b/src/views/udi/trace/history/index.vue @@ -682,7 +682,7 @@ - @@ -909,6 +909,7 @@ import {getTraceRecordList, getTraceOrder, getManuOrder, getManuCodeRelList, get export default { data() { return { + clientType: null, inOutType: null, openManuOrder: false, manuOrderFormView: {}, diff --git a/src/views/udi/trace/search/index.vue b/src/views/udi/trace/search/index.vue index e6d9c10..89db2d9 100644 --- a/src/views/udi/trace/search/index.vue +++ b/src/views/udi/trace/search/index.vue @@ -556,7 +556,7 @@ - @@ -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 }, diff --git a/src/views/udi/trace/searchLive/index.vue b/src/views/udi/trace/searchLive/index.vue index 5e6d8a5..ee2cc44 100644 --- a/src/views/udi/trace/searchLive/index.vue +++ b/src/views/udi/trace/searchLive/index.vue @@ -556,7 +556,7 @@ - @@ -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