|
|
|
|
@ -197,8 +197,8 @@ usePageLoad(loadTypes)
|
|
|
|
|
<template #default="{ row }">
|
|
|
|
|
<div class="table-row-actions">
|
|
|
|
|
<el-button class="btn-action-brand" @click="openItems(row)">字典项</el-button>
|
|
|
|
|
<el-button class="btn-action-secondary" @click="openEditType(row)">编辑</el-button>
|
|
|
|
|
<el-button class="btn-action-secondary" @click="removeType(row)">删除</el-button>
|
|
|
|
|
<el-button class="btn-action-primary" @click="openEditType(row)">编辑</el-button>
|
|
|
|
|
<el-button class="btn-action-brand" @click="removeType(row)">删除</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
@ -266,8 +266,8 @@ usePageLoad(loadTypes)
|
|
|
|
|
<el-table-column label="操作" width="160">
|
|
|
|
|
<template #default="{ row }">
|
|
|
|
|
<div class="table-row-actions">
|
|
|
|
|
<el-button class="btn-action-secondary" @click="openEditItem(row)">编辑</el-button>
|
|
|
|
|
<el-button class="btn-action-secondary" @click="removeItem(row)">删除</el-button>
|
|
|
|
|
<el-button class="btn-action-primary" @click="openEditItem(row)">编辑</el-button>
|
|
|
|
|
<el-button class="btn-action-brand" @click="removeItem(row)">删除</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|