|
@@ -8,12 +8,13 @@ import { handleCall } from '../../../core/utils/common'
|
|
|
import { onLoad } from '@dcloudio/uni-app'
|
|
|
import PageHelperEvo from '@/components/page-helper-evo.vue'
|
|
|
import { ComponentExposed } from 'vue-component-type-helpers'
|
|
|
+import dayjs from "dayjs";
|
|
|
|
|
|
const PageHelperEvoRef = ref<ComponentExposed<typeof PageHelperEvo>>()
|
|
|
const referrerId = ref<number | string>('')
|
|
|
-const { data: count, run: setCount } = useRequest(() => referrerCount({ userId:id.value }))
|
|
|
-const queryReward = computed(() => ({ status: tabsReward.value[tab.value]?.value,userId:id.value }))
|
|
|
-const queryRecommend = computed(() => (referrerId.value?{ auditStatus: tabsRecommend.value[tab.value]?.value, referrerId:referrerId.value,userId:id.value }:{auditStatus: tabsRecommend.value[tab.value]?.value,userId:id.value}))
|
|
|
+const { data: count, run: setCount } = useRequest(() => referrerCount({ referrerId:id.value }))
|
|
|
+const queryReward = computed(() => ({ status: tabsReward.value[tab.value]?.value,referrerId:id.value }))
|
|
|
+const queryRecommend = computed(() => (referrerId.value?{ auditStatus: tabsRecommend.value[tab.value]?.value, referrerId:referrerId.value,userId:id.value }:{auditStatus: tabsRecommend.value[tab.value]?.value,referrerId:id.value}))
|
|
|
|
|
|
const id = ref()
|
|
|
const type = ref("recommend")
|
|
@@ -73,7 +74,7 @@ onLoad(async(options)=>{
|
|
|
if(options?.type === "recommend"){
|
|
|
uni.setNavigationBarTitle({
|
|
|
title:"我的推荐"
|
|
|
- })
|
|
|
+ })
|
|
|
}else{
|
|
|
uni.setNavigationBarTitle({
|
|
|
title:"奖励明细"
|
|
@@ -107,13 +108,15 @@ onLoad(async(options)=>{
|
|
|
</template>
|
|
|
<template #default="{ source }">
|
|
|
<view class="bg-white rounded-[20rpx] mx-[24rpx] mt-[30rpx] px-[20rpx] py-[30rpx]" v-if="type === 'recommend'">
|
|
|
- <view class="flex items-center py-[30rpx] relative" v-for="(it, i) in source.list" :key="i" style="border-bottom: 2rpx solid #FAFAFA;">
|
|
|
- <view class="rounded-full w-[88rpx] h-[88rpx] overflow-hidden mr-[20rpx]">
|
|
|
- <image :src="it.avatar" mode="widthFix"></image>
|
|
|
+ <view class="py-[30rpx]" v-for="(it, i) in source.list" :key="i">
|
|
|
+ <view class="flex items-center pb-[20rpx]" style="border-bottom: 2rpx solid #FAFAFA;">
|
|
|
+ <view class="rounded-full w-[88rpx] h-[88rpx] overflow-hidden mr-[20rpx]">
|
|
|
+ <image :src="it.avatar" mode="widthFix"></image>
|
|
|
+ </view>
|
|
|
+ <view class="flex-grow text-[32rpx]">{{ it.name }}</view>
|
|
|
+ <view class="text-[#586A8F] text-[28rpx]" v-if="it.auditStatus === 0 && !referrerId" @click="toSecond(it)">推荐人数:{{ it.referrerCount }}</view>
|
|
|
</view>
|
|
|
- <view class="flex-grow text-[32rpx]">{{ it.name }}</view>
|
|
|
- <view class="text-[#586A8F] text-[28rpx]" v-if="it.auditStatus === 0 && !referrerId" @click="toSecond(it)">推荐人数:{{ it.referrerCount }}</view>
|
|
|
- <view class="absolute bottom-0 left-[20%] text-[24rpx] text-[#EF4343]" v-if="it.auditStatus == 2">原因:{{ it.remark }}</view>
|
|
|
+ <view class="text-[24rpx] text-[#EF4343] pl-[108rpx] pt-[20rpx] pr-[20rpx]" v-if="it.auditStatus == 2">原因:{{ it.remark }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="bg-white rounded-[20rpx] mx-[24rpx] mt-[30rpx] px-[20rpx] py-[30rpx]" v-else>
|
|
@@ -128,9 +131,9 @@ onLoad(async(options)=>{
|
|
|
<view class="text-[20rpx] bg-[#F6F6F6] rounded-full text-black/40 px-[14rpx] py-[6rpx]" v-if=" it.distributeType==1 ">一级奖励</view>
|
|
|
<view class="text-[20rpx] bg-[#F6F6F6] rounded-full text-black/40 px-[14rpx] py-[6rpx]" v-else>二级奖励</view>
|
|
|
</view>
|
|
|
- <view class="text-black/30">{{ it.completeTime }}</view>
|
|
|
+ <view class="text-black/30">{{ it.completeTime?dayjs(it.completeTime).format('YYYY/MM/DD HH:mm'):"" }}</view>
|
|
|
</view>
|
|
|
- <view class="text-[#EF4343] text-[32rpx]">+{{ it.onePoints }}(*{{ it.oneRatio }})</view>
|
|
|
+ <view class="text-[#EF4343] text-[32rpx]">+{{ it.onePoints }}(*{{ it.oneRatio }}%)</view>
|
|
|
</view>
|
|
|
<view class="flex py-[40rpx] justify-between text-black/60 text-[24rpx]">
|
|
|
<text>{{ it.pointsName }}</text>
|