fix:修改图标和其他

This commit is contained in:
2026-03-07 02:02:22 +07:00
parent d874620a83
commit 67495ea864
653 changed files with 78983 additions and 816 deletions

View File

@@ -97,7 +97,7 @@
<uni-icons v-else type="contact-filled" size="70"></uni-icons>
<view class="nickname">
<text class="name">{{ userInfo?.userName || '' }}</text>
<text class="name">ID:{{ userInfo?.userId || '' }}</text>
<text class="name">ID:{{ userInfo?.invitationCode || '' }}</text>
</view>
</view>
<image
@@ -111,7 +111,7 @@
<view class="top-box">
<view class="left-name">
<text>账户积分</text>
<text>{{ formatNumberWithWan(integralData) }}</text>
<text>{{ integralData }}</text>
</view>
<view class="right-btn">
<button

View File

@@ -62,7 +62,7 @@
<view class="top-card">
<view class="left-box">
<text>我的资产</text>
<text>{{ formatNumberWithWan(integralData) }}</text>
<text>{{ integralData }}</text>
</view>
<view class="right-box">
<button

View File

@@ -10,8 +10,13 @@
const qrcodeRef = ref(null)
const BASE_URL = computed(() => {
// #ifdef H5
const { origin } = window.location
return `${origin}/pages/mall/detail?productId=${productId.value}&groupId=${groupId.value}`
// #endif
// #ifdef APP-PLUS
return `yxdim://pages/mall/detail?productId=${productId.value}&groupId=${groupId.value}`
// #endif
})
// 复制文本通用函数
@@ -52,6 +57,13 @@
</view> -->
</view>
</view>
<!-- #ifdef APP-PLUS -->
<view class="copy-box">
<text class="link">拼单链接:{{ BASE_URL }}</text>
<button @click="copyText">复制</button>
</view>
<!-- #endif -->
<!-- 复制连接 -->
<!-- #ifdef H5 -->