i
This commit is contained in:
@@ -12,13 +12,13 @@
|
||||
<view>{{ item.label }}</view>
|
||||
</view>
|
||||
</view>
|
||||
<view style="width: 45%;"></view>
|
||||
<view style="width: 45%"></view>
|
||||
</view>
|
||||
<!-- 二维码弹窗 -->
|
||||
<nut-popup :style="{ padding: '30px 50px' }" v-model:visible="show">
|
||||
<view class="popup">
|
||||
<view>推荐人二维码绑定</view>
|
||||
<image :src="urlCode" />
|
||||
<image style="margin-top: 10px" :src="urlCode" />
|
||||
</view>
|
||||
</nut-popup>
|
||||
</view>
|
||||
@@ -28,6 +28,7 @@
|
||||
import { ref } from "vue";
|
||||
import { IconFont } from "@nutui/icons-vue-taro";
|
||||
import Taro from "@tarojs/taro";
|
||||
import { getRefereeCode } from "@/api/user";
|
||||
|
||||
const show = ref(false);
|
||||
|
||||
@@ -51,12 +52,19 @@ const list = ref([
|
||||
},
|
||||
]);
|
||||
|
||||
const clickItem = (item: any) => {
|
||||
const clickItem = async (item: any) => {
|
||||
if (item.id === 1) {
|
||||
urlCode.value = `https://api.pwmqr.com/qrcode/create?url=${Taro.getStorageSync(
|
||||
"token"
|
||||
)}`;
|
||||
// urlCode.value = `https://api.pwmqr.com/qrcode/create?url=${Taro.getStorageSync(
|
||||
// "token"
|
||||
// )}`;
|
||||
Taro.showLoading({
|
||||
title: "加载中",
|
||||
mask: true,
|
||||
});
|
||||
const res = await getRefereeCode();
|
||||
urlCode.value = `data:image/png;base64,${res.data.data}`;
|
||||
show.value = true;
|
||||
Taro.hideLoading();
|
||||
} else if (item.id === 2) {
|
||||
Taro.navigateTo({
|
||||
url: "/pages/users/distribution/integral/index",
|
||||
|
||||
@@ -9,7 +9,12 @@
|
||||
<view class="left">
|
||||
<view>昵称:{{ item.nick_name }}</view>
|
||||
<view>购买商品:{{ item.goods_name }}</view>
|
||||
<view>支付时间:{{ item.add_time.slice(0, 10) }}</view>
|
||||
<view
|
||||
>订单价格:<text style="color: red">{{
|
||||
item.order_number
|
||||
}}</text></view
|
||||
>
|
||||
<view>购买时间:{{ item.add_time.slice(0, 10) }}</view>
|
||||
</view>
|
||||
<view class="right">
|
||||
<view style="color: red"
|
||||
|
||||
Reference in New Issue
Block a user