| | |
| | | <el-table-column label="创建时间" prop="createTime" align="center" /> |
| | | <el-table-column label="操作" align="center" width="150"> |
| | | <template #default="scope"> |
| | | <el-button link type="primary" @click="openDetail(scope.row)">详情</el-button> |
| | | <el-button link type="primary" @click="openDetail(scope.row)" style="color: #67C23A">详情</el-button> |
| | | <el-button link type="primary" @click="openConfirm(scope.row)">确认</el-button> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | function getList() { |
| | | loading.value = true; |
| | | const { pageNum, pageSize, ...filters } = queryParams; |
| | | listPlan({ |
| | | listPage({ |
| | | current: pageNum, |
| | | size: pageSize, |
| | | ...filters |