| | |
| | | </el-card> |
| | | |
| | | <!-- 新增/编辑对话框 --> |
| | | <el-dialog v-model="dialogVisible" :title="dialogTitle" width="700px"> |
| | | <FormDialog v-model="dialogVisible" :title="dialogTitle" :width="'700px'" @close="dialogVisible = false" @confirm="handleSubmit" @cancel="dialogVisible = false"> |
| | | <el-form :model="form" :rules="rules" ref="formRef" label-width="100px"> |
| | | <el-row :gutter="20"> |
| | | <el-col :span="12"> |
| | |
| | | </el-dialog> |
| | | |
| | | <!-- 订单审核对话框 --> |
| | | <el-dialog v-model="reviewDialogVisible" title="订单审核" width="500px"> |
| | | <FormDialog v-model="reviewDialogVisible" title="订单审核" :width="'500px'" @close="reviewDialogVisible = false" @confirm="saveReview" @cancel="reviewDialogVisible = false"> |
| | | <el-form label-width="100px"> |
| | | <el-form-item label="订单号"> |
| | | <span>{{ currentOrder.orderNo }}</span> |
| | |
| | | </el-dialog> |
| | | |
| | | <!-- 订单转单对话框 --> |
| | | <el-dialog v-model="transferDialogVisible" title="订单转单" width="500px"> |
| | | <FormDialog v-model="transferDialogVisible" title="订单转单" :width="'500px'" @close="transferDialogVisible = false" @confirm="saveTransfer" @cancel="transferDialogVisible = false"> |
| | | <el-form label-width="100px"> |
| | | <el-form-item label="订单号"> |
| | | <span>{{ currentOrder.orderNo }}</span> |
| | |
| | | <el-input type="textarea" v-model="transferReason" rows="3" placeholder="请输入转单原因"></el-input> |
| | | </el-form-item> |
| | | </el-form> |
| | | <template #footer> |
| | | <div class="dialog-footer"> |
| | | <el-button @click="transferDialogVisible = false">取 消</el-button> |
| | | <el-button type="primary" @click="saveTransfer">确 定</el-button> |
| | | </div> |
| | | </template> |
| | | </el-dialog> |
| | | </FormDialog> |
| | | </div> |
| | | </template> |
| | | |
| | |
| | | import { ElMessage, ElMessageBox } from 'element-plus' |
| | | import { Plus, Search } from '@element-plus/icons-vue' |
| | | import Pagination from '@/components/PIMTable/Pagination.vue' |
| | | import FormDialog from '@/components/Dialog/FormDialog.vue' |
| | | |
| | | // 响应式数据 |
| | | const loading = ref(false) |