Browse Source

2026-06-11

增加packing list功能
master
fengyuan_yang 3 days ago
parent
commit
1bb5f5762f
  1. 32
      src/views/modules/yieldReport/com_separate_roll.vue

32
src/views/modules/yieldReport/com_separate_roll.vue

@ -1,6 +1,6 @@
<template>
<div class="customer-css">
<el-dialog :title="titleCon" v-drag v-bind="$attrs" v-on="$listeners" width="700px" style="height: 680px;" class="customer-dialog">
<el-dialog :title="titleCon" v-drag v-bind="$attrs" v-on="$listeners" width="820px" style="height: 680px;" class="customer-dialog">
<el-form :inline="true" label-position="top" style="height: auto;">
<!-- 时间和固定载具 -->
<el-row style="margin-top: -10px;">
@ -1776,6 +1776,7 @@ export default {
.customer-dialog >>> .el-table td.packing-list-column {
padding: 0 !important;
position: relative !important;
overflow: hidden !important;
}
.customer-dialog /deep/ .el-table td:last-child,
@ -1783,27 +1784,30 @@ export default {
.customer-dialog /deep/ .el-table td.packing-list-column {
padding: 0 !important;
position: relative !important;
overflow: hidden !important;
}
/* 备注包装器 - 绝对定位填满单元格 */
.customer-dialog >>> .remark-wrapper {
position: absolute !important;
top: 0 !important;
left: 0 !important;
right: 0 !important;
bottom: 0 !important;
top: 1px !important;
left: 1px !important;
right: 1px !important;
bottom: 1px !important;
width: 100% !important;
height: 100% !important;
box-sizing: border-box !important;
}
.customer-dialog /deep/ .remark-wrapper {
position: absolute !important;
top: 0 !important;
left: 0 !important;
right: 0 !important;
bottom: 0 !important;
top: 1px !important;
left: 1px !important;
right: 1px !important;
bottom: 1px !important;
width: 100% !important;
height: 100% !important;
box-sizing: border-box !important;
}
/* 备注textarea */
@ -1861,17 +1865,19 @@ export default {
.customer-css .el-table td.packing-list-column {
padding: 0 !important;
position: relative !important;
overflow: hidden !important;
}
/* 备注包装器 - 填满整个单元格 */
.customer-css .remark-wrapper {
position: absolute !important;
top: 0 !important;
left: 0 !important;
right: 0 !important;
bottom: 0 !important;
top: 1px !important;
left: 1px !important;
right: 1px !important;
bottom: 1px !important;
width: 100% !important;
height: 100% !important;
box-sizing: border-box !important;
}
/* 备注textarea容器 */

Loading…
Cancel
Save