@@ -2,7 +2,7 @@
<div>
<BasicTable @register="registerTable">
<template #toolbar>
- <a-button @click="showModalFn" class="ml-3"><PlusOutlined />新增权限组</a-button>
+ <a-button @click="showModalFn" class="ml-3" type="primary"><PlusOutlined />新增权限组</a-button>
</template>
</BasicTable>
<BasicModal @register="registerModal" :title="modalTitle" @ok="modalConfirm">
@@ -60,7 +60,9 @@ export function getTableColumns(fn1: () => Promise<void>, fn2: (item) => void):
</span>
<span class="pl-2">
<Popconfirm title="确定删除吗?" okText="确认" cancelText="取消" onConfirm={() => delConfirm(record.id)}>
- <Icon icon="fluent:delete-20-filled" class="cursor-pointer"></Icon>
+ <span class="text-red-500 hover:text-red-600 cursor-pointer">
+ <Icon icon="fluent:delete-20-filled"></Icon>
+ </span>
</Popconfirm>
</div>
@@ -3,7 +3,7 @@
<div class="w-2/5 flex justify-end">
- <a-button @click="handleOnAdd" class="ml-3"><PlusOutlined />新增版本信息</a-button>
+ <a-button @click="handleOnAdd" type="primary" class="ml-3"><PlusOutlined />新增版本信息</a-button>