diff --git a/src/views/wpm_bx/mlogbw_check_table.vue b/src/views/wpm_bx/mlogbw_check_table.vue
index a1bf6e34..f864bcb9 100644
--- a/src/views/wpm_bx/mlogbw_check_table.vue
+++ b/src/views/wpm_bx/mlogbw_check_table.vue
@@ -52,8 +52,8 @@
序号 |
- 物料批次 |
- 物料编号 |
+ 物料批次 |
+ 物料编号 |
生产设备 |
扭转日期 |
工装 |
@@ -71,11 +71,11 @@
{{ index + 1 }}
|
-
+ |
{{ row.mlogb__batch }}
|
-
+ |
{{ row.number }}
——{{ row.wpr_number_out }}
@@ -471,10 +471,7 @@ export default {
watch: {},
computed: {
allColumnOptions() {
- const cols = [
- { key: 'batch', label: '物料批次' },
- { key: 'number', label: '物料编号' },
- ];
+ const cols = [];
if (this.route_code === 'niuzhuan') {
cols.push({ key: 'equip', label: '生产设备' });
cols.push({ key: 'time', label: '扭转日期' });
|