This commit is contained in:
@@ -243,7 +243,13 @@
|
||||
:icon="Delete"
|
||||
circle
|
||||
@click="removeTier(index)"
|
||||
style="flex-shrink: 0; margin-top: 28px; width: 32px; height: 32px; padding: 0"
|
||||
style="
|
||||
flex-shrink: 0;
|
||||
margin-top: 28px;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
padding: 0;
|
||||
"
|
||||
/>
|
||||
</div>
|
||||
</ElCard>
|
||||
@@ -673,7 +679,7 @@
|
||||
{
|
||||
prop: 'operation',
|
||||
label: '操作',
|
||||
width: 200,
|
||||
width: 220,
|
||||
fixed: 'right',
|
||||
formatter: (row: PackageSeriesResponse) => {
|
||||
const buttons = []
|
||||
@@ -681,7 +687,7 @@
|
||||
// 详情按钮
|
||||
buttons.push(
|
||||
h(ArtButtonTable, {
|
||||
type: 'view',
|
||||
text: '详情',
|
||||
onClick: () => handleViewDetail(row)
|
||||
})
|
||||
)
|
||||
@@ -689,7 +695,7 @@
|
||||
if (hasAuth('package_series:edit')) {
|
||||
buttons.push(
|
||||
h(ArtButtonTable, {
|
||||
type: 'edit',
|
||||
text: '编辑',
|
||||
onClick: () => showDialog('edit', row)
|
||||
})
|
||||
)
|
||||
@@ -698,7 +704,7 @@
|
||||
if (hasAuth('package_series:delete')) {
|
||||
buttons.push(
|
||||
h(ArtButtonTable, {
|
||||
type: 'delete',
|
||||
text: '删除',
|
||||
onClick: () => deleteSeries(row)
|
||||
})
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user