优化分类属性管理,移除description字段,统一使用name字段存储属性名称和字典类型

This commit is contained in:
WUSIJIAN
2025-12-23 16:55:31 +08:00
parent 95da8576bc
commit b910584019
3 changed files with 14 additions and 19 deletions

View File

@@ -64,7 +64,7 @@
<el-table-column label="操作" width="200" fixed="right" align="center">
<template #default="scope">
<el-button size="small" text type="primary" @click="onEdit(scope.row)">修改</el-button>
<el-button size="small" text type="success" @click="onAddSku(scope.row)">添加SKU</el-button>
<el-button size="small" text type="success" @click="onAddSku(scope.row)">管理SKU</el-button>
<el-button size="small" text type="danger" @click="onRowDel(scope.row)">删除</el-button>
</template>
</el-table-column>