feat: 黄精粉前端功能集成 + 个人中心/资产/公排页面优化 + 去除admin copyright

主要改动:
- 个人中心: 去除HjfMemberBadge徽章, 会员等级改显示vip_name,
  "我的资产"/"公排查询"导航项改为与member-points一致风格
- 我的资产页面: 去除HjfMemberBadge, 美化卡片圆角和阴影
- 公排查询页面: 美化顶部渐变和订单卡片样式
- Admin登录页和后台布局: 彻底删除footer copyright信息
- 新增黄精粉业务页面/组件/API/Mock数据(Phase 1)
- 新增PHP环境配置文档和启动脚本

Made-with: Cursor
This commit is contained in:
apple
2026-03-13 00:49:22 +08:00
parent 21f9cc2c0a
commit f6227c0253
70 changed files with 23359 additions and 1176 deletions

View File

@@ -0,0 +1,78 @@
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
import BasicLayout from '@/layouts/basic-layout';
const pre = 'hjf_';
export default {
path: '/admin/hjf',
name: 'hjf',
header: 'hjf',
meta: {
auth: ['admin-hjf']
},
component: BasicLayout,
children: [
{
path: 'queue/order',
name: `${pre}queueOrder`,
meta: {
auth: ['hjf-queue-order'],
title: '公排订单管理'
},
component: () => import('@/pages/hjf/queueOrder/index')
},
{
path: 'queue/finance',
name: `${pre}queueFinance`,
meta: {
auth: ['hjf-queue-finance'],
title: '公排财务流水'
},
component: () => import('@/pages/hjf/queueFinance/index')
},
{
path: 'queue/config',
name: `${pre}queueConfig`,
meta: {
auth: ['hjf-queue-config'],
title: '公排配置'
},
component: () => import('@/pages/hjf/queueConfig/index')
},
{
path: 'member/level',
name: `${pre}memberLevel`,
meta: {
auth: ['hjf-member-level'],
title: '会员等级管理'
},
component: () => import('@/pages/hjf/memberLevel/index')
},
{
path: 'member/config',
name: `${pre}memberConfig`,
meta: {
auth: ['hjf-member-config'],
title: '会员配置'
},
component: () => import('@/pages/hjf/memberConfig/index')
},
{
path: 'points/log',
name: `${pre}pointsLog`,
meta: {
auth: ['hjf-points-log'],
title: '积分日志'
},
component: () => import('@/pages/hjf/pointsLog/index')
}
]
};

View File

@@ -25,6 +25,7 @@ import frameOut from "./modules/frameOut";
import work from "./modules/work";
import content from "./modules/content";
import inventory from "./modules/inventory";
import hjfQueue from "./modules/hjfQueue.js";
import { isSupplierPath } from "@/utils/pathUtils";
/**
@@ -208,7 +209,8 @@ const frameIn = [
statistic,
work,
content,
inventory
inventory,
hjfQueue
];
/**