Explorar o código

首页推荐商品列表

yuxingxing %!s(int64=2) %!d(string=hai) anos
pai
achega
d77c13cb84
Modificáronse 3 ficheiros con 23 adicións e 21 borrados
  1. 7 7
      api/home.js
  2. 4 4
      pages/index/diy/components/goodListMall.vue
  3. 12 10
      pages/index/diy/index_mall.vue

+ 7 - 7
api/home.js

@@ -2,7 +2,7 @@
 
 import request from "@/utils/request.js";
 
-
+/* 首页 */
 // 查询轮播数据
 export function getAdsList(data) {
 	return request.get("v1/ads-list",data);
@@ -28,14 +28,14 @@ export function getGoodsPage(data) {
 	return request.get("v1/goods-page",data);
 }
 
-// 根据二级商品分类Id查询商品列表
-export function get4(data) {
-	return request.get("",data);
+// 根据用户Id查询首页商品列表
+export function getIndexData(data) {
+	return request.get("v1/index-data",data);
 }
 
-// 根据商品Id查询商品明细
-export function get5(data) {
-	return request.get("",data);
+// 根据商品Id查询商品明细G
+export function getGoodsInfo(data) {
+	return request.get("v1/re/goodsInfo/page",data);
 }
 
 // 爆款专区商品列表查询

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

@@ -15,18 +15,18 @@
 						v-if="item.activity && item.activity.type === '2'">{{ $t(`砍价`) }}</span>
 					<span class="pictrue_log pictrue_log_class" :style="'background-color:' + labelColor"
 						v-if="item.activity && item.activity.type === '3'">{{ $t(`拼团`) }}</span>
-					<!-- <image :src="item.goodsImg" mode="aspectFit"></image> -->
-					<image src="../../../../static/goods@2x.png" mode="aspectFit"></image>
+					<image :src="item.goodsCover" mode="aspectFit"></image>
+					<!-- <image src="../../../../static/goods@2x.png" mode="aspectFit"></image> -->
 				</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
 							size="12" :text="item.goodsName"></u-text>
 					</view>
-					<view class="tags" v-if="opriceShow">赠送{{ item.goodsPrice }}红积分</view>
+					<view class="tags" v-if="opriceShow">赠送{{ item.obtainIntegral }}红积分</view>
 					<view class="price" :style="{ color: fontColor }">
 						<view v-if="priceShow">
-							<text>{{ $t(`¥`) }}</text>{{ item.goodsPrice }}
+							<text>{{ $t(`¥`) }}</text>{{ item.salePrice }}
 						</view>
 						<view class="txt" :style="'border:1px solid ' + labelColor + ';color:' + labelColor"
 							:class="priceShow ? '' : 'on'" v-if="item.isNew">{{ $t(`新`) }}</view>

+ 12 - 10
pages/index/diy/index_mall.vue

@@ -99,8 +99,7 @@
 				<u-swiper :list="swiperList" indicator indicatorMode="line" circular></u-swiper>
 			</view>
 			<!-- 商品列表 -->
-			<goodListMall @changeTab="changeTab" :iSshowH="true" @detail="goDetail"
-				:currentId="currentId"
+			<goodListMall @changeTab="changeTab" :iSshowH="true" @detail="goDetail" :currentId="currentId"
 				:isSortType="isSortType"></goodListMall>
 		</view>
 	</view>
@@ -109,7 +108,7 @@
 <script>
 import headerSerch from './components/headerSerch';
 import goodListMall from './components/goodListMall';
-import { getAdsList, getNoticeList, getCategoryOne, getGoodsPage } from '../../../api/home.js'
+import { getAdsList, getNoticeList, getCategoryOne, getGoodsPage, getIndexData, getGoodsInfo } from '../../../api/home.js'
 import {
 	goShopDetail
 } from '@/libs/order.js';
@@ -123,7 +122,7 @@ export default {
 			currentId: '',
 			noticeShow: false,
 			noticeContent: '',
-			tempArr:[],
+			tempArr: [],
 			tempArrBao: [
 				{
 					"id": 72,
@@ -654,15 +653,18 @@ export default {
 		this.getCategoryOne()
 		this.getAdsList()
 		this.getNoticeList()
-		this.getGoodsPage()
+		this.getIndexData()
+		this.getGoodsInfo()
 	},
 	onLoad() {
 	},
 	methods: {
-		getGoodsPage(){
-			getGoodsPage({
-				type: 2
-			}).then(res =>{
+		getGoodsInfo() {
+			getGoodsInfo({
+				current: 1,
+				size: 50,
+				isRecom: 1
+			}).then(res => {
 				this.tempArr = res.data
 			})
 		},
@@ -788,7 +790,7 @@ export default {
 		},
 		clickNav(e) {
 			this.current = e.index
-			if(e.index > 0){
+			if (e.index > 0) {
 				this.currentId = e.id
 			}
 		}