🐛 feat: 精确到按钮查询不显示
This commit is contained in:
parent
b1cae7c321
commit
e3726755ef
11
ReadMe.md
11
ReadMe.md
|
@ -28,10 +28,11 @@
|
|||
|
||||
**介绍视频视频**
|
||||
|
||||
- [环境搭建](https://www.bilibili.com/video/BV17odHY6E3S/?spm_id_from=333.1387.homepage.video_card.click&vd_source=d42b5b664efb958be39eef8ee1196a7e)
|
||||
- [运行项目](https://www.bilibili.com/video/BV1qodHYzErA/?spm_id_from=333.1387.homepage.video_card.click&vd_source=d42b5b664efb958be39eef8ee1196a7e)
|
||||
- [前端部署](https://www.bilibili.com/video/BV1BddHYgEPq/?spm_id_from=333.1387.homepage.video_card.click&vd_source=d42b5b664efb958be39eef8ee1196a7e)
|
||||
- [后端部署](https://www.bilibili.com/video/BV1BddHYgEFt/?spm_id_from=333.1387.homepage.video_card.click&vd_source=d42b5b664efb958be39eef8ee1196a7e)
|
||||
- [RBAC中URL的权限数据库、后端设计](https://www.bilibili.com/video/BV1nGVazrEKf/)
|
||||
- [bunny-admin 配置说明](https://www.bilibili.com/video/BV177VazMEiM/)
|
||||
- [Bunny-Admin 用户相关操作](https://www.bilibili.com/video/BV1B7VazME72/)
|
||||
- [Bunny-Admin 角色权限](https://www.bilibili.com/video/BV1ELVazzEnC/)
|
||||
- [Bunny-Admin 剩下的业务逻辑](https://www.bilibili.com/video/BV1ELVazzE7S/)
|
||||
- [代码生成器](https://www.bilibili.com/video/BV1d4Lxz9E3j/?vd_source=d42b5b664efb958be39eef8ee1196a7e)
|
||||
|
||||
**Github地址**
|
||||
|
@ -131,7 +132,7 @@ graph TD
|
|||
auth-api -->|启动项、控制器| service
|
||||
service -->|mapper| dao
|
||||
service -->|包含domain、配置等| auth-core
|
||||
dao -->|包含domain、配置等| auth-code
|
||||
dao -->|包含domain、配置等| auth-core
|
||||
|
||||
|
||||
```
|
||||
|
|
|
@ -192,5 +192,6 @@
|
|||
"typeit",
|
||||
"vue-demi"
|
||||
]
|
||||
}
|
||||
},
|
||||
"packageManager": "pnpm@10.8.1+sha512.c50088ba998c67b8ca8c99df8a5e02fd2ae2e2b29aaf238feaa9e124248d3f48f9fb6db2424949ff901cffbb5e0f0cc1ad6aedb602cd29450751d11c35023677"
|
||||
}
|
||||
|
|
|
@ -25,5 +25,5 @@ export const deleteEmailTemplate = (data: any) => {
|
|||
|
||||
/** 邮件模板表---获取全部邮件类型列表 */
|
||||
export const getEmailTypeList = () => {
|
||||
return http.request<BaseResult<any>>('get', 'emailTemplate/public');
|
||||
return http.request<BaseResult<any>>('get', 'emailTemplate/private');
|
||||
};
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
export const auth = {
|
||||
// 分页查询
|
||||
query: ['emailTemplate::query', 'emailTemplate::queryPage'],
|
||||
query: 'emailTemplate::query',
|
||||
// 添加操作
|
||||
add: ['emailTemplate::add'],
|
||||
// 更新操作
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
export const auth = {
|
||||
// 分页查询
|
||||
query: ['emailUsers::query', 'emailUsers::queryPage'],
|
||||
query: 'emailUsers::query',
|
||||
// 添加操作
|
||||
add: ['emailUsers::add'],
|
||||
// 更新操作
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
export const auth = {
|
||||
// 分页查询
|
||||
query: ['menuIcon::query', 'menuIcon::queryPage'],
|
||||
query: 'menuIcon::query',
|
||||
// 添加操作
|
||||
add: ['menuIcon::add'],
|
||||
// 更新操作
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
export const auth = {
|
||||
// 分页查询
|
||||
query: ['i18n::query', 'i18n::queryPage'],
|
||||
query: 'i18n::query',
|
||||
// 添加操作
|
||||
add: ['i18n::add'],
|
||||
// 更新操作
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
export const auth = {
|
||||
// 分页查询
|
||||
query: ['messageReceived::query', 'messageReceived::queryPage'],
|
||||
query: 'messageReceived::query',
|
||||
// 更新操作
|
||||
update: ['messageReceived::update'],
|
||||
// 删除操作
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
export const auth = {
|
||||
// 分页查询
|
||||
search: ['message::getMessageList'],
|
||||
search: 'message::getMessageList',
|
||||
// 添加操作
|
||||
add: ['message::addMessage'],
|
||||
// 更新操作
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
export const auth = {
|
||||
// 分页查询
|
||||
query: ['messageType::query', 'messageType::queryPage'],
|
||||
query: 'messageType::query',
|
||||
// 添加操作
|
||||
add: ['messageType::add'],
|
||||
// 更新操作
|
||||
|
|
|
@ -4,18 +4,14 @@ export const columns: TableColumnList = [
|
|||
{
|
||||
type: 'index',
|
||||
index: (index: number) => index + 1,
|
||||
label: $t("index"),
|
||||
label: $t('index'),
|
||||
width: 60,
|
||||
},
|
||||
{ label: $t('adminUser_nickname'), prop: 'nickname', minWidth: 120 },
|
||||
{ label: $t('adminUser_username'), prop: 'username', slot: 'username', minWidth: 120 },
|
||||
{ label: $t('adminUser_email'), prop: 'email', minWidth: 120 },
|
||||
{ label: $t('adminUser_phone'), prop: 'phone', minWidth: 120 },
|
||||
{ label: $t('adminUser_summary'), prop: 'personDescription', minWidth: 150 },
|
||||
{ label: $t('lastLoginIp'), prop: 'ipAddress', minWidth: 100 },
|
||||
{ label: $t('lastLoginIpAddress'), prop: 'ipRegion', minWidth: 100 },
|
||||
{ label: $t('expires'), prop: 'expires', minWidth: 120 },
|
||||
{ label: $t('readMeDay'), prop: 'readMeDay', width: 100 },
|
||||
{ label: $t('adminUser_summary'), prop: 'summary', minWidth: 150 },
|
||||
{
|
||||
label: $t('table.operation'),
|
||||
fixed: 'right',
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
export const auth = {
|
||||
// 分页查询
|
||||
search: ['userLoginLog::query', 'userLoginLog::queryPage'],
|
||||
search: 'userLoginLog::query',
|
||||
// 删除操作
|
||||
delete: ['userLoginLog::delete'],
|
||||
};
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
export const auth = {
|
||||
// 分页查询
|
||||
query: ['schedulersGroup::query'],
|
||||
query: 'schedulersGroup::query',
|
||||
// 添加操作
|
||||
add: ['schedulersGroup::add'],
|
||||
// 更新操作
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
export const auth = {
|
||||
// 分页查询
|
||||
query: ['schedulers::query'],
|
||||
query: 'schedulers::query',
|
||||
// 添加操作
|
||||
add: ['schedulers::add'],
|
||||
// 暂停
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
export const auth = {
|
||||
// 分页查询
|
||||
query: ['user::query', 'user::queryPage'],
|
||||
query: 'user::query',
|
||||
// 添加操作
|
||||
add: ['user::add'],
|
||||
// 更新操作
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
export const auth = {
|
||||
// 分页查询
|
||||
query: ['dept::query', 'dept::queryPage'],
|
||||
query: 'dept::query',
|
||||
// 添加操作
|
||||
add: ['dept::add'],
|
||||
// 更新操作
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
export const auth = {
|
||||
// 分页查询
|
||||
query: ['files:query', 'files:queryPage'],
|
||||
query: 'files:query',
|
||||
// 更新操作
|
||||
update: ['files::update'],
|
||||
// 添加操作
|
||||
|
|
|
@ -4,7 +4,7 @@ export const auth = {
|
|||
// 添加操作
|
||||
add: ['router::addMenu'],
|
||||
// 分页查询
|
||||
search: ['router::menuList'],
|
||||
search: 'router::menuList',
|
||||
// 删除操作
|
||||
deleted: ['router::deletedMenuByIds'],
|
||||
// 为菜单分配角色
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
export const auth = {
|
||||
// 分页查询
|
||||
query: ['role::query', 'role::queryPage'],
|
||||
query: 'role::query',
|
||||
// 添加操作
|
||||
add: ['role::add'],
|
||||
// 更新操作
|
||||
|
|
Loading…
Reference in New Issue