spring
4 天以前 3639cc3129fe3433f110a18d53b1cae2c4f4ff8e
src/views/inventoryManagement/receiptManagement/Record.vue
@@ -76,20 +76,11 @@
        <el-table-column label="审批状态"
                         prop="approveStatus"
                         align="center"
                         width="180">
                         width="120">
          <template #default="scope">
            <el-tag :type="getApproveStatusType(scope.row.approveStatus)">
              {{ getApproveStatusText(scope.row.approveStatus) }}
            </el-tag>
            <el-button
              v-if="scope.row.approveStatus === 3"
              type="primary"
              link
              style="margin-left: 8px"
              @click="handleReApprove(scope.row)"
            >
              重新提起审批
            </el-button>
          </template>
        </el-table-column>
        <el-table-column label="入库人"
@@ -102,6 +93,20 @@
            {{ getRecordType(scope.row.recordType) }}
          </template>
        </el-table-column>
        <el-table-column label="操作"
                         align="center"
                         width="200">
          <template #default="scope">
            <el-button
              v-if="scope.row.approveStatus === 3"
              type="primary"
              link
              @click="handleReApprove(scope.row)"
            >
              重新提起审批
            </el-button>
          </template>
        </el-table-column>
      </el-table>
      <pagination v-show="total > 0"
                  :total="total"