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){