Parcourir la source

商品按类别Id查询列表

yuxingxing il y a 2 ans
Parent
commit
98981b30a7
4 fichiers modifiés avec 33 ajouts et 13 suppressions
  1. 1 1
      api/home.js
  2. 2 2
      config/app.js
  3. 6 4
      pages/index/diy/components/goodListMall.vue
  4. 24 6
      pages/index/diy/index_mall.vue

+ 1 - 1
api/home.js

@@ -5,7 +5,7 @@ import request from "@/utils/request.js";
 /* 首页 */
 // 查询轮播数据
 export function getAdsList(data) {
-	return request.get("v1/ads-list",data);
+	return request.get("v1/re/ads/list",data);
 }
 
 // 查询首页公告消息

+ 2 - 2
config/app.js

@@ -2,8 +2,8 @@ module.exports = {
 	// 小程序配置
 	// #ifdef MP || APP-PLUS
 	// 请求域名 格式: https://您的域名
-	// HTTP_REQUEST_URL: `https://www.gzzhsckj.com`,
-	HTTP_REQUEST_URL: `http://wine.gzzzyd.com`,
+	HTTP_REQUEST_URL: `https://www.gzzhsckj.com`,
+	// HTTP_REQUEST_URL: `http://wine.gzzzyd.com`,
 	// HTTP_REQUEST_URL: `v4.crmeb.net`,
 	// #endif
 	

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

@@ -38,7 +38,7 @@
 </template>
 
 <script>
-import { getGoodsPage, getCategoryTwo } from '@/api/home.js'
+import { getGoodsInfo, getCategoryTwo } from '@/api/home.js'
 export default {
 	name: 'promotionList',
 	props: {
@@ -275,9 +275,11 @@ export default {
 		},
 
 		getGoodsPage(typeId) {
-			getGoodsPage({
-				type: typeId,
-				size:999999
+			getGoodsInfo({
+				zoneType: 3,
+				goodsCategoryId: typeId,
+				current: 1,
+				size: 100
 			}).then(res => {
 				this.tempArr = []
 				this.tempArr = res.data

+ 24 - 6
pages/index/diy/index_mall.vue

@@ -71,9 +71,10 @@
 								@click="goDetail(item)">
 								<image :src="item.goodsCover" mode="aspectFit"></image>
 								<view class="goods-name">
-									<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>
+									<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>
@@ -96,7 +97,7 @@
 		<view class="tab-content" v-show="current >= 1">
 			<!-- 轮播 -->
 			<view class="swiper-group">
-				<u-swiper :list="swiperList" indicator indicatorMode="line" circular></u-swiper>
+				<u-swiper :list="swiperTabList" indicator indicatorMode="line" circular></u-swiper>
 			</view>
 			<!-- 商品列表 -->
 			<goodListMall @changeTab="changeTab" :iSshowH="true" @detail="goDetail" :currentId="currentId"
@@ -638,6 +639,11 @@ export default {
 				'洛阳亲友如相问',
 				'一片冰心在玉壶'
 			],
+			swiperTabList: [
+				'https://cdn.uviewui.com/uview/swiper/swiper3.png',
+				'https://cdn.uviewui.com/uview/swiper/swiper2.png',
+				'https://cdn.uviewui.com/uview/swiper/swiper1.png',
+			],
 			swiperList: [
 				'https://cdn.uviewui.com/uview/swiper/swiper3.png',
 				'https://cdn.uviewui.com/uview/swiper/swiper2.png',
@@ -655,7 +661,7 @@ export default {
 		this.getNoticeList()
 		this.getBroGoodsInfo()
 		this.getGoodsInfo()
-
+		this.getAdsTabList()
 	},
 	onLoad() {
 	},
@@ -717,7 +723,7 @@ export default {
 		},
 		getAdsList() {
 			getAdsList({
-				type: 2
+				type: 1
 			}).then(res => {
 				if (res.data.length > 0) {
 					this.swiperList = []
@@ -727,6 +733,18 @@ export default {
 				}
 			});
 		},
+		getAdsTabList() {
+			getAdsList({
+				type: 7
+			}).then(res => {
+				if (res.data.length > 0) {
+					this.swiperTabList = []
+					res.data.forEach(element => {
+						this.swiperTabList.push(element.imageUrl)
+					});
+				}
+			});
+		},
 		// 促销列表的点击事件;
 		changeTab(type) {
 			this.goodType = type;