diff --git a/src/views/wpm_bx/mlogbw_check_table.vue b/src/views/wpm_bx/mlogbw_check_table.vue index 58e75b41..da5c555e 100644 --- a/src/views/wpm_bx/mlogbw_check_table.vue +++ b/src/views/wpm_bx/mlogbw_check_table.vue @@ -35,38 +35,38 @@
| - + | + | -序号 | -物料批次 | -物料编号 | -生产设备 | -扭转日期 | -{{ item.testitem_name }} | -{{ item.defect_name }} | -备注 | -操作 | +序号 | +物料批次 | +物料编号 | +生产设备 | +扭转日期 | +{{ item.testitem_name }} | +{{ item.defect_name }} | +备注 | +操作 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| - + | + | -+ | {{ index + 1 }} | -+ | {{ row.mlogb__batch }} | -+ | {{ row.number }} ——{{ row.wpr_number_out }} | -+ | {{ row.equip_name }}{{ row.equip_number }} | -+ |
{{ row.work_start_time}}
|
- + | {{ row[item.testitem_name] }} @@ -97,14 +97,14 @@ | -- + | + | -+ | {{ row.note }} | -+ | @@ -1134,21 +1134,33 @@ table { width: max-content; } table { + color: #606266; border-top: 1px solid #ebeef5; border-left: 1px solid #ebeef5; } +tbody tr:nth-child(odd) { + background-color: #f5f7fa; + +} +tr{ + min-height: 40px; +} td { - height: 25px; + padding: 5px; + min-height: 40px; + line-height: 30px; text-align: left; border-right: 1px solid #ebeef5; border-bottom: 1px solid #ebeef5; } th{ - height: 34px; + padding: 12px 0; + min-height: 40px; + font-size: 12px; + color: #909399; word-break: break-all; border-right: 1px solid #ebeef5; border-bottom: 1px solid #ebeef5; - /* background-color: #5ca969; */ } input{ width: 100%; @@ -1156,8 +1168,12 @@ input{ border: none; padding: 0 2px; } -.w_30{ - width: 30px; +.checkboxInput{ + width: 14px; + height: 14px; +} +.w_50{ + width: 50px; } .w_80{ width: 80px; @@ -1174,21 +1190,19 @@ input{ .w_180{ width: 180px; } -.inlineBlock{ - display: inline-block; -} + .padding_4{ padding: 4px; /* 添加内边距 */ } .btn{ - margin: 2px 2px; + margin:0 5px; border: none; color: #ffffff; font-size: 12px; border-radius: 4px; width: 55px; - height: 20px; - line-height: 20px; + height: 30px; + line-height: 28px; } .btn_red{ background: #ff0000; |