|
@@ -87,6 +87,13 @@
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|
|
</scroll-view>
|
|
</view>
|
|
</view>
|
|
|
|
+
|
|
|
|
+ <uni-popup ref="inputDialog" type="dialog">
|
|
|
|
+ <view class="shareQrCodePopupContent">
|
|
|
|
+ <view class="ss-m-b-10">请前往网页版门墩儿商城兑换</view>
|
|
|
|
+ <uni-link href="https://www.menduner.com/mall" text="点击复制网页地址" color="#00897B" fontSize="16" copyTips="已复制,请在电脑端打开"></uni-link>
|
|
|
|
+ </view>
|
|
|
|
+ </uni-popup>
|
|
</layout-page>
|
|
</layout-page>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -105,6 +112,7 @@ import { onShow } from '@dcloudio/uni-app'
|
|
import { userStore } from '@/store/user'
|
|
import { userStore } from '@/store/user'
|
|
import { showAuthModal } from '@/hooks/useModal'
|
|
import { showAuthModal } from '@/hooks/useModal'
|
|
|
|
|
|
|
|
+const inputDialog = ref()
|
|
const useUserStore = userStore()
|
|
const useUserStore = userStore()
|
|
// 设置自定义tabBar选中值
|
|
// 设置自定义tabBar选中值
|
|
|
|
|
|
@@ -124,10 +132,11 @@ const goodsList = [
|
|
{ name: '减压捏捏乐', point: 500, url: 'https://minio.menduner.com/dev/menduner/pinchMusic.png' }
|
|
{ name: '减压捏捏乐', point: 500, url: 'https://minio.menduner.com/dev/menduner/pinchMusic.png' }
|
|
]
|
|
]
|
|
const handleClickGoods = () => {
|
|
const handleClickGoods = () => {
|
|
- uni.showToast({
|
|
|
|
- icon: 'none',
|
|
|
|
- title: '请前往网页版门墩儿商城兑换'
|
|
|
|
- })
|
|
|
|
|
|
+ // uni.showToast({
|
|
|
|
+ // icon: 'none',
|
|
|
|
+ // title: '请前往网页版门墩儿商城兑换'
|
|
|
|
+ // })
|
|
|
|
+ inputDialog.value.open()
|
|
}
|
|
}
|
|
|
|
|
|
// 连续签到天数
|
|
// 连续签到天数
|
|
@@ -249,6 +258,13 @@ function handleTo (page) {
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss">
|
|
<style scoped lang="scss">
|
|
|
|
+.shareQrCodePopupContent {
|
|
|
|
+ width: 75vw;
|
|
|
|
+ padding: 40rpx;
|
|
|
|
+ margin-bottom: 20rpx;
|
|
|
|
+ text-align: center;
|
|
|
|
+ background-color: #fff;
|
|
|
|
+}
|
|
.box {
|
|
.box {
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
height: 100vh;
|
|
height: 100vh;
|