feat(article): 优化文章列表页面功能
- 将标题列改为可点击链接,支持直接跳转到文章详情页 - 新增操作列,添加查看按钮便于访问文章详情 - 修复事件绑定语法错误,将@pressEnter改为@press-enter - 修复分页组件事件绑定错误,将@showSizeChange改为@show-size-change - 实现路由参数监听,支持通过URL参数keywords自动搜索文章 - 临时禁用开发者中心的产品选择下拉菜单 - 移除已废弃的开发者中心相关页面和百色中学API接口文件
This commit is contained in:
@@ -61,7 +61,7 @@ export const consoleNav: ConsoleNavEntry[] = [
|
||||
icon: SettingOutlined,
|
||||
children: [
|
||||
{ key: 'console-account-info', label: '账号信息', icon: UserOutlined, to: '/console/account' },
|
||||
{ key: 'console-account-members', label: '成员管理', icon: TeamOutlined, to: '/console/account/members' },
|
||||
// { key: 'console-account-members', label: '成员管理', icon: TeamOutlined, to: '/console/account/members' },
|
||||
{ key: 'console-account-security', label: '账号安全', icon: SafetyCertificateOutlined, to: '/console/account/security' },
|
||||
{ key: 'console-account-kyc', label: '实名认证', icon: IdcardOutlined, to: '/console/account/kyc' },
|
||||
{ key: 'console-account-logout', label: '退出登录', icon: LogoutOutlined, to: '/console/logout' }
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
export type DeveloperNavItem = {
|
||||
key: string
|
||||
label: string
|
||||
to: string
|
||||
}
|
||||
|
||||
export const developerNav: DeveloperNavItem[] = [
|
||||
{ key: 'developer-home', label: '概览', to: '/developer' },
|
||||
{ key: 'developer-apps', label: '应用中心', to: '/developer/apps' },
|
||||
{ key: 'developer-source', label: '源码与仓库', to: '/developer/source' },
|
||||
{ key: 'developer-tutorial', label: '开发教程', to: '/developer/tutorial' },
|
||||
{ key: 'developer-git', label: 'Git 账号绑定', to: '/developer/git' },
|
||||
{ key: 'developer-requests', label: '权限申请记录', to: '/developer/requests' },
|
||||
{ key: 'developer-support', label: '支持与反馈', to: '/developer/support' }
|
||||
]
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
export type MpNavItem = {
|
||||
key: string
|
||||
label: string
|
||||
to: string
|
||||
}
|
||||
|
||||
export const mpNav: MpNavItem[] = [
|
||||
{ key: 'mp-home', label: '概览', to: '/mp' }
|
||||
]
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
export type OaNavItem = {
|
||||
key: string
|
||||
label: string
|
||||
to: string
|
||||
}
|
||||
|
||||
export const oaNav: OaNavItem[] = [
|
||||
{ key: 'oa-home', label: '概览', to: '/oa' }
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user