mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
feat: add WeChat bot platform to application access
This commit is contained in:
parent
f84d093f71
commit
bad7524938
|
|
@ -69,6 +69,14 @@ const permissionPrecise = computed(() => {
|
|||
|
||||
// 平台数据
|
||||
const platforms = reactive([
|
||||
{
|
||||
key: 'wecomBot',
|
||||
logoSrc: new URL(`../../assets/logo/logo_wechat-bot.svg`, import.meta.url).href,
|
||||
name: t('views.application.applicationAccess.wecomBot'),
|
||||
description: t('views.application.applicationAccess.wecomBotTip'),
|
||||
isActive: false,
|
||||
exists: false,
|
||||
},
|
||||
{
|
||||
key: 'wecom',
|
||||
logoSrc: new URL(`../../assets/logo/logo_wechat-work.svg`, import.meta.url).href,
|
||||
|
|
@ -109,14 +117,6 @@ const platforms = reactive([
|
|||
isActive: false,
|
||||
exists: false,
|
||||
},
|
||||
{
|
||||
key: 'wecomBot',
|
||||
logoSrc: new URL(`../../assets/logo/logo_wechat-bot.svg`, import.meta.url).href,
|
||||
name: t('views.application.applicationAccess.wecomBot'),
|
||||
description: t('views.application.applicationAccess.wecomBotTip'),
|
||||
isActive: false,
|
||||
exists: false,
|
||||
},
|
||||
])
|
||||
|
||||
const AccessSettingDrawerRef = ref()
|
||||
|
|
|
|||
Loading…
Reference in New Issue