| | |
| | | <el-table-column fixed="right" label="操作" width="200" align="center"> |
| | | <template #default="scope"> |
| | | <el-button link type="primary" size="small" @click="handleEdit(scope.row)">编辑</el-button> |
| | | <el-button link type="success" size="small" @click="handleProcess(scope.row)">处理@</el-button> |
| | | <!-- <el-button link type="success" size="small" @click="handleProcess(scope.row)">处理@</el-button>--> |
| | | <el-button link type="danger" size="small" @click="handleDelete(scope.row)">删除</el-button> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | |
| | | <template #footer> |
| | | <div class="dialog-footer"> |
| | | <el-button @click="closeDialog">取消</el-button> |
| | | <el-button type="primary" @click="submitForm">确认</el-button> |
| | | <el-button @click="closeDialog">取消</el-button> |
| | | |
| | | </div> |
| | | </template> |
| | | </el-dialog> |