This commit is contained in:
qsh
2024-06-20 19:43:07 +08:00
parent 013a93e668
commit 44e45349c2
18 changed files with 1047 additions and 143 deletions

View File

@@ -30,13 +30,27 @@
width="180px"
:formatter="dateFormatter"
/>
<el-table-column label="操作">
<el-table-column label="操作" width="150px">
<template #default="scope">
<el-button type="primary" text @click="openForm('update', scope.row)">修改</el-button>
<el-button type="primary" text @click="openForm('createChildren', scope.row)">
<el-button
type="primary"
style="padding: 0px"
text
@click="openForm('update', scope.row)"
>
修改
</el-button>
<el-button
type="primary"
style="padding: 0px"
text
@click="openForm('createChildren', scope.row)"
>
新增
</el-button>
<el-button type="danger" text @click="handleDelete(scope.row.id)">删除</el-button>
<el-button type="danger" style="padding: 0px" text @click="handleDelete(scope.row.id)">
删除
</el-button>
</template>
</el-table-column>
</el-table>

View File

@@ -20,7 +20,7 @@
/>
</template>
</el-table-column>
<el-table-column label="操作" width="80px">
<el-table-column label="操作" width="80px" fixed="right">
<template #default="{ row }">
<el-button type="primary" text style="padding: 0" @click="remove(row.clueParamId)"
>删除</el-button