feat(uniapp_v2): 二开功能迁移与小程序主包优化

- 从 uniapp 迁移 HJF 页面、API、组件及用户/订单相关改动
- queue、assets 使用独立分包以降低主包体积
- 修复首页单根节点与支付结果页 v-if 链
- 关闭 HjfDemoPanel 全局注册;uniNoticeBar 注释 $getAppWebview 避免 __webviewId__ 报错
- 配置域名与 manifest 应用名称;cache/store 防御性处理

Made-with: Cursor
This commit is contained in:
apple
2026-03-26 12:16:01 +08:00
parent c84aeda062
commit 8e17762510
742 changed files with 184117 additions and 0 deletions

View File

@@ -0,0 +1,74 @@
<template>
<view class="gift-message-card">
<view class="message-header">
<image class="avatar" :src="avatar" mode="aspectFill"></image>
<text class="gift-text">{{ nickname }} 赠您一份礼物请查收</text>
</view>
<view class="divider"></view>
<view class="message-content">
<text class="message-text">{{
gift_mark || "天天开心,所得皆所愿~"
}}</text>
</view>
</view>
</template>
<script>
export default {
name: "SendGiftMarkCard",
props: {
avatar: {
type: String,
default: "",
},
nickname: {
type: String,
default: "匿名",
},
gift_mark: {
type: String,
default: "",
},
},
};
</script>
<style lang="scss" scoped>
.gift-message-card {
background-color: #ffffff;
border-radius: 24rpx;
padding: 32rpx 24rpx;
.message-header {
display: flex;
align-items: center;
margin-bottom: 20rpx;
.avatar {
width: 36rpx;
height: 36rpx;
border-radius: 50%;
margin-right: 16rpx;
}
.gift-text {
font-size: 28rpx;
color: #ae5a2a;
font-weight: 400;
}
}
.divider {
height: 1rpx;
background-color: #f5f5f5;
margin: 20rpx 0;
}
.message-content {
.message-text {
font-size: 28rpx;
color: #333;
line-height: 1.5;
}
}
}
</style>