ZN
2026-03-21 f3cec0341563c2c0dd4f5df609d0689c6c450bfc
src/views/salesManagement/orderManagement/index.vue
@@ -69,7 +69,7 @@
        </el-table-column>
        <el-table-column label="操作" width="250" fixed="right" align="center">
          <template #default="scope">
            <el-button link type="primary" @click="handleView(scope.row)">查看</el-button>
            <el-button link type="primary" @click="handleView(scope.row)" style="color: #67C23A">查看</el-button>
            <el-button link type="primary" @click="handleEdit(scope.row)" v-if="scope.row.status === '待审核'">编辑</el-button>
            <el-button link type="primary" @click="handleReview(scope.row)" v-if="scope.row.status === '待审核'">审核</el-button>
            <el-button link type="primary" @click="handleTransfer(scope.row)" v-if="scope.row.status === '已审核'">转单</el-button>
@@ -166,7 +166,7 @@
          <el-button type="primary" @click="handleSubmit">确 定</el-button>
        </div>
      </template>
    </el-dialog>
    </FormDialog>
    <!-- 订单审核对话框 -->
    <FormDialog v-model="reviewDialogVisible" title="订单审核" :width="'500px'" @close="reviewDialogVisible = false" @confirm="saveReview" @cancel="reviewDialogVisible = false">
@@ -196,7 +196,7 @@
          <el-button type="primary" @click="saveReview">确 定</el-button>
        </div>
      </template>
    </el-dialog>
    </FormDialog>
    <!-- 订单转单对话框 -->
    <FormDialog v-model="transferDialogVisible" title="订单转单" :width="'500px'" @close="transferDialogVisible = false" @confirm="saveTransfer" @cancel="transferDialogVisible = false">