diff --git a/src/views/wpm_bx/mlog_detail.vue b/src/views/wpm_bx/mlog_detail.vue index 3c11ae77..031f35b7 100644 --- a/src/views/wpm_bx/mlog_detail.vue +++ b/src/views/wpm_bx/mlog_detail.vue @@ -363,6 +363,7 @@ :material_in="materialIn" :material_out="mlogItem.material_out" :mgroupName= "mlogItem.mgroup_name" + :test_file="mlogItem.test_file" :isSubmit="isSubmit" :batchNumber="batchNumber" :handle_user="mlogItem.handle_user" diff --git a/src/views/wpm_bx/mlogbw_check_table.vue b/src/views/wpm_bx/mlogbw_check_table.vue index 1bd23e52..eaaca5f1 100644 --- a/src/views/wpm_bx/mlogbw_check_table.vue +++ b/src/views/wpm_bx/mlogbw_check_table.vue @@ -22,14 +22,17 @@ 检验 批量操作 -
- +
+
+ {{ test_file_name }} + +
@@ -354,6 +357,10 @@ export default { type:String, default:"", }, + test_file:{ + type:String, + default:"", + }, cutCount:{ type:Number, default:0, @@ -386,6 +393,7 @@ export default { route_code:"", wprInputText:"", project_code:"", + test_file_name:"", canMultiple:false, selectedAll:false, checkAll: false, @@ -439,6 +447,7 @@ export default { watch: {}, mounted() { let that = this; + that.test_file_name = that.test_file.split("/")[that.test_file.split("/").length-1]; that.route_code = that.$route.path.split("/")[2]; that.currentDate = that.$TOOL.dateFormat2(new Date()); that.project_code = this.$TOOL.data.get("BASE_INFO").base.base_code;