快乐的昕的电脑
2025-11-14 0075304648af0582196ba32d54701644e74d8b88
components/WorkOrderPrint.vue
@@ -12,7 +12,7 @@
            </view>
            <!-- 数采总产量 -->
            <view class="section-title">数采产量</view>
            <view class="section-title">当前数采产量报工记录</view>
            <div class="table-scroll">
               <table class="report-table">
                  <thead>
@@ -25,7 +25,7 @@
                        <th>机台号</th>
                        <th>初始采集数</th>
                        <th>报工时采集数</th>
                        <th>报工数(计算)</th>
                        <th>基于数采的报工数</th>
                        <th>不良数</th>
                        <th>良品数(计算)</th>
                     </tr>
@@ -567,10 +567,10 @@
      box-sizing: border-box;
   }
   .wide-layout {
      max-width: 1600px;
      margin: 0 auto;
   }
    .wide-layout {
        max-width: none;
        width: 100%;
    }
   .page.has-overlay .status-section > :not(.overlay) {
      pointer-events: none;
@@ -580,28 +580,63 @@
      pointer-events: auto;
   }
   .report-table-wrapper {
      margin-bottom: 12px;
   }
    .report-table-wrapper {
        width: 100%;
        max-width: none;
    }
   .table-scroll {
      overflow-x: auto;
   }
    .table-scroll {
        width: 100%;
        overflow-x: scroll !important;
        /* 保证高度有空间显示滚动条 */
        /* 可选:设置最小高度,避免内容太少时滚动条不显示 */
        min-height: 40px;
    }
   .report-title {
      font-size: 24px;
      font-size: 32px;
      font-weight: 600;
      text-align: center;
      margin: 0;
   }
   .report-table {
      min-width: 1080px;
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      background: #fff;
   }
    /* 2. 区块标题 */
    .section-title, .history-title {
        font-size: 26px;
    }
    /* 3. 表格字体 */
    .report-table, .report-table th, .report-table td {
        font-size: 22px;
    }
    /* 4. 当前报工人、不良数量等输入区 */
    .current-user-section,
    .defective-section,
    .submit-section {
        font-size: 22px;
    }
    /* 5. 输入框字体 */
    .inp, .bad-input {
        font-size: 28px;
    }
    /* 6. 按钮字体 */
    .details-btn,
    .select-user-btn,
    .refresh-btn-header,
    .reset-btn-header {
        font-size: 22px;
    }
    .report-table {
        width: 100%;
        min-width: 1800px;
        /*min-width: unset;*/ /* 取消最小宽度限制 */
        border-collapse: collapse;
        background: #fff;
    }
      .report-table th, .report-table td {
         border: 1px solid #555;