From fadd4cba666503457e51a68e7a72e5d99ce8d896 Mon Sep 17 00:00:00 2001 From: shijing Date: Thu, 20 Mar 2025 17:06:31 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E7=8E=BB=E7=BA=A4=E6=97=A5?= =?UTF-8?q?=E5=BF=97=E5=B1=95=E7=A4=BA=E6=93=8D=E4=BD=9C=E9=A1=B9=E5=8F=8A?= =?UTF-8?q?=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/wpm_bx/mlog_detail.vue | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/views/wpm_bx/mlog_detail.vue b/src/views/wpm_bx/mlog_detail.vue index da41e6d6..2883daec 100644 --- a/src/views/wpm_bx/mlog_detail.vue +++ b/src/views/wpm_bx/mlog_detail.vue @@ -34,6 +34,11 @@ {{ mlogItem.handle_user_name }} + {{ mlogItem.work_start_time }} @@ -388,6 +393,7 @@ export default { }, fileList:[], tableDataWm:[], + oinfo_json:[], test_file:'', deptId: "", visible: false, @@ -448,6 +454,15 @@ export default { let that = this; that.$API.wpm.mlog.item.req(that.mlogId).then((res) => { that.mlogItem = res; + that.oinfo_json = []; + if(res.oinfo_json_){ + for(let key in res.oinfo_json_){ + let obj = {}; + obj.key = key; + obj.value = res.oinfo_json_[key]; + that.oinfo_json.push(obj); + } + } that.routeId = res.route; that.tracking = res.material_in_.tracking; if(res.test_file!==null){