feat(admin): 从文章详情页面改为文章管理页面

- 修改页面配置,设置新的导航栏标题和样式
- 重新设计页面布局,增加搜索栏、文章列表和操作按钮
- 添加文章搜索、分页加载和删除功能
- 优化文章列表项的样式和交互
- 新增礼品卡相关API和组件
- 更新优惠券组件,增加到期提醒和筛选功能
This commit is contained in:
2025-08-13 10:11:57 +08:00
parent 0e457f66d8
commit a1cacc04e8
67 changed files with 6278 additions and 2816 deletions

View File

@@ -38,8 +38,9 @@ export default defineAppConfig({
"help/index",
"about/index",
"wallet/wallet",
"coupon/coupon",
"points/points"
// "coupon/index",
// "points/points",
"gift/index"
]
},
{
@@ -54,15 +55,17 @@ export default defineAppConfig({
},
{
"root": "shop",
"pages": [
'category/index',
"pages": ['category/index',
'orderDetail/index',
'goodsDetail/index',
'orderConfirm/index',
'orderConfirmCart/index',
'search/index',
'shopArticle/index',
'shopArticle/add'
'search/index']
},
{
"root": "admin",
"pages": [
"article/index",
]
}
],