Procházet zdrojové kódy

fix:红包总数接口联调

suwadaimyojin před 2 roky
rodič
revize
082ac9d1c6
2 změnil soubory, kde provedl 51 přidání a 42 odebrání
  1. 4 0
      api/home.js
  2. 47 42
      pages/order_addcart/order_addcart.vue

+ 4 - 0
api/home.js

@@ -170,3 +170,7 @@ export function postLinkedUrl(data) {
 export function leaderboard(data) {
 	return request.get('v1/re/leaderboard', data)
 }
+// 红包首页数据-统计
+export function todayStatistics(data) {
+	return request.get('/v1/re/todayStatistics', data)
+}

+ 47 - 42
pages/order_addcart/order_addcart.vue

@@ -7,7 +7,7 @@
 				</view>
 				<view class="text-info">
 					<view class="received-count">
-						0.00元
+						{{moneyObj.receiveItemAmount}}
 					</view>
 					<view class="received-info">
 						已领取红包
@@ -17,7 +17,7 @@
 			<view class="loss" @click="goDetail(item)">
 				<view class="text-info">
 					<view class="received-count">
-						0.93元
+						{{moneyObj.lossTotalAmount}}
 					</view>
 					<view class="received-info">
 						已错失红包
@@ -31,7 +31,7 @@
 				当前红包池
 			</view>
 			<view class="loop-count">
-				4498.0.1元
+				{{moneyObj.totalRemainItemAmount}}
 			</view>
 		</view>
 
@@ -52,11 +52,11 @@
 				<img v-show="i===2" src='http://wine.gzzzyd.com/wx/order_addcart/rank3.png' alt="">
 				<img v-show="i!==0 && i!==1 && i!==2" :src='src.avatar' alt="">
 				<text class="nuber"> {{src.userName}}</text>
-				<text class="mosaic">  {{src.phone}}</text>
+				<text class="mosaic"> {{src.phone}}</text>
 				<text class="litem-info"> 共领取了</text>
 				<text class="balance">{{src.totalAmount}}</text>
 			</view>
-			
+
 
 		</view>
 	</view>
@@ -70,7 +70,8 @@
 	let sysHeight = 0
 	// #endif
 	import {
-		leaderboard
+		leaderboard,
+		todayStatistics
 	} from '@/api/home.js';
 	import {
 		getProductHot,
@@ -97,7 +98,9 @@
 	import {
 		getNavigation
 	} from '@/api/public.js'
-import { colorChange } from '../../api/api';
+	import {
+		colorChange
+	} from '../../api/api';
 	export default {
 		components: {
 			pageFooter,
@@ -111,6 +114,16 @@ import { colorChange } from '../../api/api';
 		data() {
 			return {
 				isactiveTab: 'todayRank',
+				moneyObj: {
+					lossTotalAmount: "0",
+					receiveItemAmount: "0",
+					receiveItemCount: 0,
+					redEnvelopeItemCount: 0,
+					remainItemCount: 0,
+					totalReceivedRedEnvelopeAmount: "0",
+					totalRedEnvelopeAmount: "0",
+					totalRemainItemAmount: "0"
+				},
 				imgHost: HTTP_REQUEST_URL,
 				is_diy: uni.getStorageSync('is_diy'),
 				canShow: false,
@@ -145,7 +158,7 @@ import { colorChange } from '../../api/api';
 					productAttr: [],
 					productSelect: {}
 				},
-				rankList:[],
+				rankList: [],
 				productValue: [], //系统属性
 				storeInfo: {},
 				attrValue: '', //已选属性
@@ -160,34 +173,6 @@ import { colorChange } from '../../api/api';
 		},
 		computed: mapGetters(['isLogin']),
 		onLoad(options) {
-			// if (this.is_diy) {
-			// 	if (uni.getStorageSync('FOOTER_BAR')) {
-			// 		uni.hideTabBar()
-			// 	} else {
-			// 		this.is_diy_set = true
-			// 	}
-			// 	uni.request({
-			// 		url:'api/mock/navigation',
-			// 		success:res=>{
-			// 			this.newData = res.data
-			// 			if (this.newData.status && this.newData.status.status) {
-			// 				uni.hideTabBar()
-			// 			} else {
-			// 				uni.showTabBar()
-			// 			}
-			// 		}
-			// 	})
-			// 	// getNavigation().then(res => {
-			// 	// 	this.newData = res.data
-			// 	// 	if (this.newData.status && this.newData.status.status) {
-			// 	// 		uni.hideTabBar()
-			// 	// 	} else {
-			// 	// 		uni.showTabBar()
-			// 	// 	}
-			// 	// })
-			// } else {
-			// 	uni.hideTabBar()
-			// }
 			let that = this;
 			if (that.isLogin == false) {
 				toLogin();
@@ -229,8 +214,9 @@ import { colorChange } from '../../api/api';
 				this.isShowAuth = false;
 			};
 		},
-		created(){
+		created() {
 			this.leaderboard()
+			this.todayStatistics()
 		},
 		methods: {
 
@@ -284,19 +270,36 @@ import { colorChange } from '../../api/api';
 			reElection: function(item) {
 				this.getGoodsDetails(item)
 			},
-			
+
 			leaderboard() {
-				colorChange(this.isactiveTab)
+				let that = this
 				uni.showLoading({
 					title: this.$t(`加载中`),
 					mask: true
 				});
-				let postData ={
-					flag:this.isactiveTab==='todayRank'?1:0
+				let postData = {
+					flag: this.isactiveTab === 'todayRank' ? 1 : 0
 				}
 				leaderboard(postData).then(res => {
 					if (res.data.length > 0) {
-						this.rankList = res.data
+						that.$set(that, "rankList", res.data)
+					} else {
+						that.$set(that, "rankList", [])
+					}
+					uni.hideLoading();
+				})
+			},
+			todayStatistics() {
+				uni.showLoading({
+					title: this.$t(`加载中`),
+					mask: true
+				});
+				let postData = {
+					flag: this.isactiveTab === 'todayRank' ? 1 : 0
+				}
+				todayStatistics().then(res => {
+					if (res.data.length > 0) {
+						this.moneyObj = res.data
 					}
 					uni.hideLoading();
 				})
@@ -1296,6 +1299,8 @@ import { colorChange } from '../../api/api';
 		margin-top: 20rpx;
 		padding-top: 20rpx;
 		padding-bottom: 10rpx;
+		height: 600rpx;
+		overflow: auto;
 
 		.rank-list-item {
 			margin: 20rpx;