ソースを参照

爆款专区列表

yuxingxing 2 年 前
コミット
b89525c73c
3 ファイル変更20 行追加10 行削除
  1. 2 2
      api/home.js
  2. 1 1
      pages/index/diy/components/goodListMall.vue
  3. 17 7
      pages/index/diy/index_mall.vue

+ 2 - 2
api/home.js

@@ -33,14 +33,14 @@ export function getIndexData(data) {
 	return request.get("v1/index-data",data);
 }
 
-// 根据商品Id查询商品明细G
+// 根据商品列表
 export function getGoodsInfo(data) {
 	return request.get("v1/re/goodsInfo/page",data);
 }
 
 // 爆款专区商品列表查询
 export function get6(data) {
-	return request.get("",data);
+	return request.get("v1/re/goodsInfo/page",data);
 }
 
 // 商品推荐商品列表查询

+ 1 - 1
pages/index/diy/components/goodListMall.vue

@@ -20,7 +20,7 @@
 				</view>
 				<view class="text-info">
 					<view class="title" v-if="titleShow">
-						<u-text :prefixIcon="item.isHot == 1?'bookmark':''" iconStyle="font-size: 16px; color:red" :lines="2" bold block
+						<u-text :prefixIcon="item.isHot == 1?'bookmark':''" iconStyle="font-size: 16px; color:red;min-height: 30px;" :lines="2" bold block
 							size="12" :text="item.goodsName"></u-text>
 					</view>
 					<view class="tags" v-if="opriceShow">赠送{{ item.obtainIntegral }}红积分</view>

+ 17 - 7
pages/index/diy/index_mall.vue

@@ -69,19 +69,19 @@
 						<scroll-view scroll-x="true">
 							<view class="goods-item" v-for="(item, index) in tempArrBao" :key="index"
 								@click="goDetail(item)">
-								<image :src="item.image" mode="aspectFit"></image>
+								<image :src="item.goodsCover" mode="aspectFit"></image>
 								<view class="goods-name">
-									<u-text prefixIcon="bookmark" iconStyle="font-size: 16px; color:red" :lines="2" bold
-										block size="12" :text="item.store_name"></u-text>
-									<view class="tags">赠送20.54红积分</view>
-									<view class="price">¥{{ item.ot_price }}</view>
+									<u-text prefixIcon="bookmark" iconStyle="font-size: 16px; color:red;min-height: 30px;" :lines="2" bold
+										block size="12" :text="item.goodsName"></u-text>
+									<view class="tags">赠送{{item.obtainIntegral}}红积分</view>
+									<view class="price">¥{{ item.salePrice }}</view>
 								</view>
 							</view>
 						</scroll-view>
 					</view>
 				</view>
 			</view>
-			<!-- 商品列表 -->
+			<!-- 商品推荐列表 -->
 			<view class="goods-list">
 				<view class="title">
 					<view class="line"></view>
@@ -653,8 +653,9 @@ export default {
 		this.getCategoryOne()
 		this.getAdsList()
 		this.getNoticeList()
-		this.getIndexData()
+		this.getBroGoodsInfo()
 		this.getGoodsInfo()
+
 	},
 	onLoad() {
 	},
@@ -668,6 +669,15 @@ export default {
 				this.tempArr = res.data
 			})
 		},
+		getBroGoodsInfo() {
+			getGoodsInfo({
+				current: 1,
+				size: 50,
+				zoneType: 6
+			}).then(res => {
+				this.tempArrBao = res.data
+			})
+		},
 		getCategoryOne() {
 			getCategoryOne().then(res => {
 				this.navigationList = []