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

@@ -1,12 +1,13 @@
<template>
<view class="wf-item-page wf-page0">
<view class='pictrue'>
<view class='pictrue' style="position: relative;">
<easy-loadimage
mode="widthFix"
:image-src="item.image"
:borderSrc="item.activity_frame.image"
width="100%"
borderRadius="16rpx 16rpx 0 0"></easy-loadimage>
<view class="queue-badge" v-if="item.is_queue_goods == 1">参与公排</view>
</view>
<view class="info_box">
<view class="w-full line2 fs-28 text--w111-333 lh-40rpx">
@@ -126,4 +127,17 @@
.text-mer{
color: $primary-merchant;
}
.queue-badge {
position: absolute;
top: 12rpx;
right: 12rpx;
padding: 4rpx 14rpx;
border-radius: 20rpx;
font-size: 20rpx;
font-weight: 600;
color: #fff;
background: linear-gradient(135deg, #52c41a, #389e0d);
z-index: 10;
letter-spacing: 2rpx;
}
</style>