快乐的昕的电脑
2025-11-24 d814e64c23d20aa1c6f0775cfe2c47e77684172f
components/WorkOrderStatus.vue
@@ -1,11 +1,12 @@
<template>
   <view class="page">
      <!-- 刷新按钮 -->
      <button @click="handleRefresh" class="refresh-btn">刷新</button>
      <view>
         <h4>说明:</br>开工时间=首件合格后取送检时间,</br>完工时间=报工数等于工单数的时间</h4>
      </view>
      <!-- 上半部分 -->
      <!-- 刷新按钮 -->
      <!-- 开工完工 -->
      <view class="top-section">
         <!-- 左边工单按钮组和输入框,左右布局 -->
@@ -16,16 +17,20 @@
            </view>
            <view class="item">
               <button class="btn-disabled">完工</button>
               <input class="input-box" v-model="endTime" disabled="true" placeholder="报工数达到计划数,或点完工写入" />
               <input class="input-box" v-model="endTime" disabled="true" placeholder="报工数达到计划数后自动完工" />
            </view>
            <view class="item">
               <button @click="stateCheck(2)" class="btn-blue">暂停</button>
               <input class="input-box" v-model="suspendTime" disabled="true" placeholder="点暂停按钮时写入" />
            </view>
            <!--<view class="item">
               <button @click="stateCheck(2)" class="btn-blue">反暂停</button>
               <input class="input-box" v-model="suspendTime" disabled="true" placeholder="点暂停按钮时写入" />
            </view>-->
            <!-- <view class="item">
               <button @click="stateCheck(3)" class="btn-blue">反完工</button>
               <input class="input-box" v-model="reverseTime" disabled="true" placeholder="点反完工按钮写入" />
            </view> -->
      <button @click="stateCheck(3)" class="btn-blue">反完工</button>
      <input class="input-box" v-model="reverseTime" disabled="true" placeholder="点反完工按钮写入" />
   </view> -->
         </view>
         <!-- 右边工单状态 -->
@@ -219,19 +224,20 @@
   }
   /* 刷新按钮样式 */
   .refresh-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background-color: #00A2E9;
      /* 蓝色背景 */
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      font-size: 35px;
      cursor: pointer;
   }
    .refresh-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #00A2E9;
        /* 蓝色背景 */
        color: white;
        padding: 10px 20px;
        height: 60px;
        border: none;
        border-radius: 5px;
        font-size: 35px;
        cursor: pointer;
    }
   /* 上半部分:左右布局 */
   .top-section {
@@ -293,18 +299,18 @@
   }
   /* 右边工单状态部分 */
   .right-section {
          width: 30%;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: flex-start;
          text-align: center;
          padding-top: 45px;
          flex-wrap: wrap;
          align-content: flex-start;
          margin-top: -44px;
   }
    .right-section {
        width: 30%; /* 原来是30%,调大一点 */
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: center;
        padding-top: 45px;
        flex-wrap: wrap;
        align-content: flex-start;
        margin-top: -44px;
    }
   .status-title {
      margin-bottom: 2vh;
@@ -356,4 +362,39 @@
      /* Larger font for buttons */
      height: 100%;
   }
    /* 让右侧工单号输入框变长 */
    .status-title input.status-title {
        width: 110%; /* 或 100%,根据实际需求调整 */
        min-width: 320px; /* 可选,保证最小宽度 */
        font-size: 2vw;
        box-sizing: border-box;
    }
    .button,
    .input-box {
        font-size: 2.2vw !important; /* 字体更大 */
        height: 6vh !important; /* 高度略增 */
    }
    .input-box {
        border: 2.5px solid #999 !important; /* 边框更粗更明显 */
        border-radius: 6px !important; /* 圆角略大 */
        padding: 0 1.5vw !important;
    }
    button {
        border: 2.5px solid #999 !important; /* 按钮边框加粗 */
        border-radius: 6px !important;
    }
    .left-section .item button {
        border-width: 1px !important; /* 边框更粗 */
        border-style: solid !important;
        border-color: #999 !important; /* 保持原有色调 */
        font-size: 2.6vw !important; /* 字体更大 */
        font-weight: bold;
        height: 7vh !important; /* 按钮高度加大 */
    }
</style>