Преглед изворни кода

fix:红包图片采用外部链接&红包排行榜接口联调

suwadaimyojin пре 2 година
родитељ
комит
91ca4483eb
2 измењених фајлова са 38 додато и 49 уклоњено
  1. 5 0
      api/home.js
  2. 33 49
      pages/order_addcart/order_addcart.vue

+ 5 - 0
api/home.js

@@ -165,3 +165,8 @@ export function postLinkedUrl(data) {
 	// let url = "?code="+data.code+"&getPhoneNumberCode="+data.getPhoneNumberCode
 	return request.post("v1/linked/getLinkedUser",data);
 }
+
+// 红包排行榜
+export function leaderboard(data) {
+	return request.get('v1/re/leaderboard', data)
+}

+ 33 - 49
pages/order_addcart/order_addcart.vue

@@ -3,7 +3,7 @@
 		<view class="order_addcart-header-area">
 			<view class="received" @click="goDetail(item)">
 				<view class="pictrue">
-					<!-- <image src='../../static/order_addcart/qiandai.png'></image> -->
+					<image src='http://wine.gzzzyd.com/wx/order_addcart/qiandai.png'></image>
 				</view>
 				<view class="text-info">
 					<view class="received-count">
@@ -33,41 +33,30 @@
 			<view class="loop-count">
 				4498.0.1元
 			</view>
-			<!-- <image src='../../static/order_addcart/hongbaochi.png'  mode="widthFix"></image> -->
 		</view>
 
 		<view class="tab-area">
-			<view @click="isactiveTab = 'todayRank'"
+			<view @click="isactiveTab = 'todayRank';leaderboard()"
 				:class="{'tab-area-active1':isactiveTab === 'todayRank','base-tab':true}">
 				<text> 今日红包排行榜</text>
 			</view>
-			<view @click="isactiveTab = 'allRank'"
+			<view @click="isactiveTab = 'allRank';leaderboard()"
 				:class="{'tab-area-active2':isactiveTab === 'allRank','base-tab':true}">
 				<text> 红包领取总榜</text>
 			</view>
 		</view>
 		<view class="rank-list">
-			<view class="rank-list-item">
-				<!-- <img src='../../static/order_addcart/rank1.png' alt=""> -->
-				<text class="nuber"> 15772754677</text>
-				<text class="mosaic"> 1577***4677</text>
+			<view class="rank-list-item" v-for="(src, i) in rankList" :key="src.id">
+				<img v-show="i===0" src='http://wine.gzzzyd.com/wx/order_addcart/rank1.png' alt="">
+				<img v-show="i===1" src='http://wine.gzzzyd.com/wx/order_addcart/rank2.png' alt="">
+				<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="litem-info"> 共领取了</text>
-				<text class="balance"> 31212.40</text>
-			</view>
-			<view class="rank-list-item">
-				<!-- <img src='../../static/order_addcart/rank2.png' alt=""> -->
-				<text class="nuber"> 15772754677</text>
-				<text class="mosaic"> 1577***4677</text>
-				<text class="litem-info"> 共领取了</text>
-				<text class="balance"> 3121.40</text>
-			</view>
-			<view class="rank-list-item">
-				<!-- <img src='../../static/order_addcart/rank3.png' alt=""> -->
-				<text class="nuber"> 15772754677</text>
-				<text class="mosaic"> 1577***4677</text>
-				<text class="litem-info"> 共领取了</text>
-				<text class="balance"> 312.40</text>
+				<text class="balance">{{src.totalAmount}}</text>
 			</view>
+			
 
 		</view>
 	</view>
@@ -81,12 +70,8 @@
 	let sysHeight = 0
 	// #endif
 	import {
-		getCartList,
-		getCartCounts,
-		changeCartNum,
-		cartDel,
-		getResetCart
-	} from '@/api/order.js';
+		leaderboard
+	} from '@/api/home.js';
 	import {
 		getProductHot,
 		collectAll,
@@ -112,6 +97,7 @@
 	import {
 		getNavigation
 	} from '@/api/public.js'
+import { colorChange } from '../../api/api';
 	export default {
 		components: {
 			pageFooter,
@@ -159,6 +145,7 @@
 					productAttr: [],
 					productSelect: {}
 				},
+				rankList:[],
 				productValue: [], //系统属性
 				storeInfo: {},
 				attrValue: '', //已选属性
@@ -242,7 +229,11 @@
 				this.isShowAuth = false;
 			};
 		},
+		created(){
+			this.leaderboard()
+		},
 		methods: {
+
 			// 授权关闭
 			authColse: function(e) {
 				this.isShowAuth = e;
@@ -293,27 +284,20 @@
 			reElection: function(item) {
 				this.getGoodsDetails(item)
 			},
-			/**
-			 * 获取产品详情
-			 * 
-			 */
-			getGoodsDetails: function(item) {
+			
+			leaderboard() {
+				colorChange(this.isactiveTab)
 				uni.showLoading({
 					title: this.$t(`加载中`),
 					mask: true
 				});
-				let that = this;
-				that.cartId = item.id;
-				that.product_id = item.product_id;
-				getProductDetail(item.product_id).then(res => {
-					uni.hideLoading();
-					that.attr.cartAttr = true;
-					let storeInfo = res.data.storeInfo;
-					that.$set(that, 'storeInfo', storeInfo);
-					that.$set(that.attr, 'productAttr', res.data.productAttr);
-					that.$set(that, 'productValue', res.data.productValue);
-					that.DefaultSelect();
-				}).catch(err => {
+				let postData ={
+					flag:this.isactiveTab==='todayRank'?1:0
+				}
+				leaderboard(postData).then(res => {
+					if (res.data.length > 0) {
+						this.rankList = res.data
+					}
 					uni.hideLoading();
 				})
 			},
@@ -1358,7 +1342,7 @@
 	}
 
 	.loop {
-		// background: url('../../static/order_addcart/hongbaochi.png') no-repeat;
+		background: url('http://wine.gzzzyd.com/wx/order_addcart/hongbaochi.png') no-repeat;
 		width: 100%;
 		height: 250rpx;
 		background-size: 100% 100%;
@@ -1406,13 +1390,13 @@
 		}
 
 		.tab-area-active1 {
-			// background: url('../../static/order_addcart/tab1.png') no-repeat;
+			background: url('http://wine.gzzzyd.com/wx/order_addcart/tab1.png') no-repeat;
 			background-size: 340rpx 120rpx;
 
 		}
 
 		.tab-area-active2 {
-			// background: url('../../static/order_addcart/tab2.png') no-repeat;
+			background: url('http://wine.gzzzyd.com/wx/order_addcart/tab2.png') no-repeat;
 			background-size: 340rpx 120rpx;
 
 		}