feat(UserPanel): Add "My workshop" link to UserPanelPop.vue (#680)

* feat(userpanel): Add "我的工房" link to UserPanelPop.vue

In UserPanelPop.vue, I added a new menu item to the 'otherLinks' array for quick access to the "My Workshop(我的工房)" page. The new item is:

{ name: t('topbar.user_dropdown.workshop'), url: 'https://gf.bilibili.com?msource=main_station' }

This update enhances the user experience by providing a direct link to the user's workshop from the user dropdown menu.

I believe many creators will use the "My Workshop(我的工房)" option, which can help them quickly jump to their own workshop(B站工房) page to handle some user orders.

* Update cmn-TW.yml

* Update jyut.yml

---------

Co-authored-by: Hakadao <a578457889743@gmail.com>
This commit is contained in:
Karasukaigan
2024-04-27 18:26:50 +08:00
committed by GitHub
parent 39d6d9a91d
commit 825794fb26
5 changed files with 5 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ const otherLinks = computed((): { name: string, url: string }[] => {
{ name: t('topbar.user_dropdown.uploads_manager'), url: 'https://member.bilibili.com/v2#/upload-manager/article' },
{ name: t('topbar.user_dropdown.b_coins_wallet'), url: 'https://pay.bilibili.com/' },
{ name: t('topbar.user_dropdown.orders'), url: 'https://show.bilibili.com/orderlist' },
{ name: t('topbar.user_dropdown.workshop'), url: 'https://gf.bilibili.com?msource=main_station' },
{ name: t('topbar.user_dropdown.my_stream_info'), url: 'https://link.bilibili.com/p/center/index' },
{ name: t('topbar.user_dropdown.my_courses'), url: 'https://www.bilibili.com/cheese/mine/list' },
]