purui 6 days ago
parent
commit
a2f34710d6

+ 8 - 2
packages/app/src/pages-sub/mine/refferrer/details.vue

@@ -121,7 +121,13 @@ onLoad(async (options:object)=>{
 							<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>
+<<<<<<< HEAD
 						<view class="text-[24rpx] text-[#EF4343] pl-[108rpx] pt-[20rpx] pr-[20rpx]" v-if="it.auditStatus == 2">原因:{{ it.remark }}</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.reason }}</view>
+>>>>>>> a994fef56bccff9e58ebbc5e098f7358120534c1
 					</view>
 				</view>
 				<view class="bg-white rounded-[20rpx] mx-[24rpx] mt-[30rpx] px-[20rpx] py-[30rpx]" v-else>
@@ -136,9 +142,9 @@ onLoad(async (options:object)=>{
 									<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?dayjs(it.completeTime).format('YYYY/MM/DD'):"" }}</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>

+ 8 - 6
packages/app/src/pages-sub/mine/refferrer/twoDetails.vue

@@ -72,7 +72,7 @@ onLoad(async (options:object)=>{
 	tabsRecommend.value[2].label = tabsRecommend.value[2].label + "(" +res.oneRejectCount+ ")"
 	uni.setNavigationBarTitle({
 		title:ob.name + "的推荐"
-	})	
+	})
 })
 
 </script>
@@ -88,12 +88,14 @@ onLoad(async (options:object)=>{
 			</template>
 			<template #default="{ source }">
 				<view class="bg-white rounded-[20rpx] mx-[24rpx] mt-[30rpx] px-[20rpx] py-[30rpx]">
-					<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>
-						<view class="flex-grow text-[32rpx]">{{ it.name }}</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>
 			</template>

+ 3 - 3
packages/merchant/src/core/libs/agent-requests.ts

@@ -326,8 +326,8 @@ export const getBrowseRecordCount = (stylistId: number) =>
  */
 export const getReferralDynamics = (stylistId: number) =>
   httpGet<ReferralRes>(
-    `/app-api/member/distribute/referralDynamics?userId=${stylistId}`,
-  )  
+    `/app-api/member/distribute/referralDynamics?referrerId=${stylistId}`,
+  )
 /**
  * /app-api/member/browse-record/page 浏览记录
  * @param query
@@ -349,7 +349,7 @@ export const getSalesOrdersCounts = (query = {}) =>
       { label: '累计成交订单数', value: res.data.orderCount ?? 0,type: 2 },
       { label: '累计成交金额', value: res.data.salesAmount ?? 0 ,type: 2},
 	  { label: '历史记录', value:encodeURIComponent(JSON.stringify(res.data.history)), type: 2},
-      { label: '其他销售信息', value: `${res.data.otherSale ?? 0}条` },	  
+      { label: '其他销售信息', value: `${res.data.otherSale ?? 0}条` },
     ],
   }))
 /**

+ 15 - 12
packages/merchant/src/pages/mine/refferrer/details.vue

@@ -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>

+ 3 - 3
packages/merchant/src/pages/mine/refferrer/index.vue

@@ -6,8 +6,8 @@ import Card from '@/components/card.vue'
 import { phone, right } from '../../../core/libs/svgs'
 import { referrerCount, distributePointsSum } from '../../../core/libs/requests'
 const id = ref()
-const { data: count, run: setCount } = useRequest(() => referrerCount({ userId:id.value }))
-const { data: pointsSum, run: setPointsSum} = useRequest(() => distributePointsSum({ userId:id.value }))
+const { data: count, run: setCount } = useRequest(() => referrerCount({ referrerId:id.value }))
+const { data: pointsSum, run: setPointsSum} = useRequest(() => distributePointsSum({ referrerId:id.value }))
 const handleClick = (path) => {
   uni.navigateTo({ url: path })
 }
@@ -80,7 +80,7 @@ onLoad(async (query?: Record<string | 'id', any>) => {
 		  <view class="bg-[#F2F2F2] flex px-[32rpx] py-[10rpx] text-[24rpx] text-black/40 rounded-full items-center">
 			  <text class="mr-[10rpx]">待入账:{{ pointsSum.waitPoints }}积分</text>
 			  <icon @click="tips" type="info_circle" size="16" color="#999"></icon>
-		  </view>	  
+		  </view>
 	  </view>
 	  <div class="flex">
 		<div class="w-[50%]">

+ 8 - 6
packages/merchant/src/pages/mine/refferrer/twoDetails.vue

@@ -73,7 +73,7 @@ onLoad(async (options)=>{
 	tabsRecommend.value[2].label = tabsRecommend.value[2].label + "(" +res.oneRejectCount+ ")"
 	uni.setNavigationBarTitle({
 		title:ob.name + "的推荐"
-	})	
+	})
 })
 
 </script>
@@ -89,12 +89,14 @@ onLoad(async (options)=>{
 			</template>
 			<template #default="{ source }">
 				<view class="bg-white rounded-[20rpx] mx-[24rpx] mt-[30rpx] px-[20rpx] py-[30rpx]">
-					<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>
-						<view class="flex-grow text-[32rpx]">{{ it.name }}</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>
 			</template>