| | |
| | | <el-button type="danger" @click="handleDelete">删除</el-button> |
| | | </div> |
| | | </div> |
| | | |
| | | |
| | | <div class="table_list"> |
| | | <PIMTable |
| | | rowKey="id" |
| | |
| | | |
| | | <template #operation="{ row }"> |
| | | <el-button type="primary" link @click="openForm('view', row)">查看</el-button> |
| | | <el-button type="primary" link @click="openForm('edit', row)" v-if="row.status === 1">编辑</el-button> |
| | | <el-button type="primary" link @click="openForm('handle', row)" v-if="row.status === 1">处理</el-button> |
| | | </template> |
| | | </PIMTable> |
| | | </div> |
| | |
| | | current: page.value.current, |
| | | size: page.value.size |
| | | }; |
| | | |
| | | |
| | | expiryAfterSalesListPage(queryParams).then(res => { |
| | | // 映射后端返回数据到前端表格 |
| | | tableData.value = res.data.records.map(item => ({ |