修改工单
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 5m26s

This commit is contained in:
sexygoat
2026-02-25 16:14:38 +08:00
parent ca3184857e
commit dccad819cf
20 changed files with 2163 additions and 1229 deletions

View File

@@ -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)
})
)