Преглед на файлове

最新团购列表接口联调

pangqijun преди 1 година
родител
ревизия
445160b6ee
променени са 6 файла, в които са добавени 131 реда и са изтрити 662 реда
  1. 28 0
      api/groupon.js
  2. 3 67
      api/home.js
  3. 2 1
      config/app.js
  4. 67 47
      pages/index/diy/components/latestGroupBuying.vue
  5. 29 546
      pages/index/diy/index_mall.vue
  6. 2 1
      utils/request.js

+ 28 - 0
api/groupon.js

@@ -0,0 +1,28 @@
+import request from "@/utils/request.js";
+
+// 查询最新团购列表
+export function latestGroupon(data) {
+    return request.get("/v1/groupon/latest",data);
+}
+
+// 查询历史团购数据
+export function historyGroupon(data) {
+    return request.get("/v1/groupon/history",data);
+}
+
+// 团购详情
+export function detailGroupon(data) {
+    return request.get("/v1/groupon/detail",data);
+}
+
+// 商品详情接口
+export function goodsDetail(data) {
+    return request.get("/v1/goods/detail",data);
+}
+
+// 发布团购
+export function publishGroupon(data) {
+    return request.post("/v1/groupon/detail",data);
+}
+
+

+ 3 - 67
api/home.js

@@ -5,7 +5,7 @@ import request from "@/utils/request.js";
 /* 首页*/
 // 查询轮播数据
 export function getAdsList(data) {
-	return request.get("v1/re/ads/list",data);
+	return request.get("v1/ads-list",data);
 }
 
 // 查询首页公告消息
@@ -49,12 +49,12 @@ export function getUserAddressByUserId(data) {
 	return request.get("v1/userAddress-detailByUserId",data);
 }
 
-// 
+//
 export function getUserAddressByIdAndFreight(data) {
 	return request.get("v1/userAddress-detailByIdAndFreight",data);
 }
 
-// 
+//
 export function getAvailableChec(data) {
 	return request.get("v1/re/order/availableChec",data);
 }
@@ -112,16 +112,6 @@ export function postUserOrderRefund(data) {
 	return request.post("v1/finance/order-refund?"+url,data);
 }
 
-// 立即购买下单前置校验
-export function postBeforeCheck(data) {
-	return request.post("v1/re/order/beforeCheck",data);
-}
-
-// 进入商品详情可售检测
-export function getAvailableCheck(data) {
-	return request.get("v1/re/order/availableCheck",data);
-}
-
 // 立即购买下单前置校验
 export function postOrderSubmit(data) {
 	return request.post("v1/re/order/submit",data);
@@ -160,63 +150,9 @@ export function postLoginAuth(data) {
 	});
 }
 
-// 服务商数据
-export function postStatistics(data) {
-	let url = "?userId="+data.userId
-	return request.post("v1/linked/getStatistics"+url,data);
-}
-
 // 获取分享连接
 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)
-}
-
-// 红包首页数据-统计
-export function todayStatistics(data) {
-	return request.get('v1/re/todayStatistics', data)
-}
-
-// 绑定记录
-export function linkedBindLogList(data) {
-	return request.get('v1/linked/linkedBindLogList', data)
-}
-
-// 收益记录
-export function earningsList(data) {
-	return request.get('v1/linked/earningsList', data)
-}
-// 查询当前登录人领取的红包金额记录
-export function logListByUserId(data) {
-	return request.get('/v1/re/logListByUserId', data)
-}
-// 分页查询错失红包记录列表
-export function exclusivePage(data) {
-	return request.get('/v1/re/exclusivePage', data)
-}
-// 判断当前用户是否可以抢红包
-export function grabFlag(data) {
-	return request.get('/v1/re/grabFlagList', data)
-}
-// 抢红包
-export function doGrab(data) {
-	return request.get('/v1/re/grab', data)
-}
-
-// 直属伙伴
-export function linkedUserList(data) {
-	return request.get('/v1/linked/linkedUserList', data)
-}
-// 直推人数
-export function userRecomPage(data) {
-	return request.get('/v1/userRecom-page', data)
-}
-// 查询自己的创客人数
-export function makerPage(data) {
-	return request.post('/v1/makerPage', data)
-}

+ 2 - 1
config/app.js

@@ -3,7 +3,8 @@ module.exports = {
 	// #ifdef MP || APP-PLUS
 	// 请求域名 格式: https://您的域名
 	// HTTP_REQUEST_URL: `https://www.gzzhsckj.com`,
-	HTTP_REQUEST_URL: `https://wine.gzzzyd.com`,
+	// HTTP_REQUEST_URL: `https://wine.gzzzyd.com`,
+	HTTP_REQUEST_URL: `http://localhost:8802`,
 	// HTTP_REQUEST_URL: `v4.crmeb.net`,
 	// #endif
 	

+ 67 - 47
pages/index/diy/components/latestGroupBuying.vue

@@ -1,20 +1,22 @@
 <template>
 	<view class="index-product-wrapper" :class="iSshowH ? 'on' : ''" :style="'margin-top:' + mbConfig * 2 + 'rpx;'"
 		v-show="!isSortType">
-		<view v-if="iSshowH">
+<!-- 		<view v-if="iSshowH">
 			<u-tabs :list="navigationList2" @click="clickNav" lineColor="#EB4C63" :inactiveStyle="{ color: '#333' }"
 				:activeStyle="{ color: '#EB4C63', fontWeight: 'bold' }" keyName="title"></u-tabs>
-		</view>
-		<!-- 商品列表 -->
-		<view class="list-box animated">
+		</view> -->
+		<!-- 拼团列表 -->
+
+		<view class="list-box animated" v-for="(e, index) in grouponData" :key="index">
 			<view class="group_3 flex-col">
-				<view class="tag_1 flex-col"><text class="text_6">1/3</text></view>
+				<view class="tag_1 flex-col"><text class="text_6">1/{{e.slideshowTotal}}</text></view>
 			</view>
 			<view class="group_4 flex-row justify-between">
 				<view class="list_2 flex-row">
-					<view class="text-wrapper_3 flex-col" :style="{ background: item.lanhuBg0 }" v-for="(item, index) in loopData0"
+					<text class="text_7">共{{e.goodsTotal}}个</text>
+					<view class="text-wrapper_3 flex-col" :style="{background: `url(${item})` }" v-for="(item, index) in e.goodsImage"
 						:key="index">
-						<text v-if="item.slot1 === 1" class="text_7">共28个</text>
+						<!-- <text v-if="item.slot1 === 1" class="text_7">共{{e.goodsTotal}}个</text> -->
 					</view>
 				</view>
 				<image class="icon_3" referrerpolicy="no-referrer"
@@ -27,12 +29,12 @@
 				})">
 					<view class="text-wrapper_4">
 						<text class="text_8">¥</text>
-						<text class="text_9">7.00</text>
+						<text class="text_9">{{e.minPrice}}</text>
 						<text class="text_10">&nbsp;~</text>
 						<text class="text_8">¥</text>
-						<text class="text_9">48.00</text>
+						<text class="text_9">{{e.maxPrice}}</text>
 					</view>
-					<text class="text_13">防晒、面膜、护肤专场,大牌正品,不惧比价</text>
+					<text class="text_13">{{e.mainTitle}}</text>
 				</view>
 				<image class="icon_4" referrerpolicy="no-referrer"
 					src="https://lanhu.oss-cn-beijing.aliyuncs.com/SketchPng499c106363c358efd4037e2befc671bc45b9a692931f8fbeb07dd342f420f04b" />
@@ -40,24 +42,29 @@
 			<view class="group_6 flex-row">
 				<image class="avatar-group_1" referrerpolicy="no-referrer"
 					src="https://lanhu.oss-cn-beijing.aliyuncs.com/SketchPng7e7f268c1ab4f8f9a61bfb41d7843a8514aedf1d4312678cfd24c9cb23c6cc6c" />
-				<text class="text_14">4人</text>
+				<text class="text_14">{{e.grouponUserTotal}}人</text>
 				<text class="text_15">正在参团中</text>
 				<view class="image-text_11 flex-row justify-between">
 					<image class="icon_5" referrerpolicy="no-referrer"
 						src="https://lanhu.oss-cn-beijing.aliyuncs.com/SketchPng706a577ce54d1457bbf9ef4cc7ce31fcb9c54a60410c9a945cae1617c3df7640" />
 					<text class="text-group_4">截止倒计时</text>
-					<text class="text_16">02时25分19秒</text>
+					<!-- <text class="text_16">02时25分19秒</text> -->
+					<text class="text_16">
+						<!-- <uni-countdown :show-day="false" :hour="{{e.h}}" :minute="{{e.m}}" :second="{{e.s}}" /> -->
+						<!-- <uni-countdown :show-day="false" :hour="12" :minute="12" :second="12" /> -->
+						<uni-countdown :day="1" :hour="1" :minute="12" :second="40"></uni-countdown>
+					</text>
 				</view>
 			</view>
 			<view class="group_7 flex-row justify-between">
 				<view class="text-group_12 flex-col">
 					<text class="text_17">最近的自提网点:</text>
-					<text class="text_18">上海市浦东新区秀浦路29号三层303室</text>
+					<text class="text_18">{{e.selfTake.name}}</text>
 				</view>
 				<view class="image-text_12 flex-col">
 					<image class="icon_6" referrerpolicy="no-referrer"
 						src="https://lanhu.oss-cn-beijing.aliyuncs.com/SketchPng6c7bfe951de28c68cbf7532beec94d0a16e2ea6d81efa80933eed9ece8207578" />
-					<text class="text-group_6">距您1.8km</text>
+					<text class="text-group_6">距您{{e.distance}}km</text>
 				</view>
 			</view>
 			<view class="box_4 flex-row">
@@ -66,9 +73,9 @@
 						src="https://lanhu.oss-cn-beijing.aliyuncs.com/SketchPng716260d376f718135006e01ff6d283c78abdf5a5c88debf66a7f6aa59347d81c" />
 					<text class="text-group_7">发布于:</text>
 				</view>
-				<text class="text_19">1天20小时36分钟前</text>
+				<text class="text_19">{{e.publishTimeDesc}}</text>
 				<view class="image-text_14 flex-row justify-between">
-					<text class="text-group_8">762人浏览过</text>
+					<text class="text-group_8">{{e.views}}人浏览过</text>
 					<image class="icon_8" referrerpolicy="no-referrer"
 						src="https://lanhu.oss-cn-beijing.aliyuncs.com/SketchPngcb2a14d093472b69f7328957e43efe5af8e4e9d3bfdec5ebeaddd131fe2ce146" />
 				</view>
@@ -95,6 +102,7 @@
 
 <script>
 import { getGoodsInfo, getCategoryTwo } from '@/api/home.js'
+import {latestGroupon, historyGroupon, detailGroupon, goodsDetail} from '@/api/groupon.js'
 export default {
 	name: 'promotionList',
 	props: {
@@ -102,6 +110,10 @@ export default {
 			type: Object,
 			default: () => { }
 		},
+		positionInfo: {
+			type: Object,
+			default: () => { }
+		},
 		tempArr: {
 			type: Array,
 			default: []
@@ -120,9 +132,8 @@ export default {
 		}
 	},
 	watch: {
-		currentId (Id) {
-			console.log(Id);
-			this.getCategoryTwo(Id)
+		currentId () {
+			this.onLoadData(this.currentId);
 		}
 	},
 	data () {
@@ -311,37 +322,11 @@ export default {
 			fontColor: "rgba(253,80,47,1)",
 			labelColor: "rgba(29,176,252,1)",
 			typeId: '',
-			loopData0: [
-				{
-					lanhuBg0:
-						'background: linear-gradient(90deg, #FFE9E9 0%, #FAFAFA 100%); no-repeat',
-					slot1: 1,
-				},
-				{
-					lanhuBg0:
-						'url(https://lanhu-dds-backend.oss-cn-beijing.aliyuncs.com/merge_image/imgs/38e693de009644aa9de2dc6d6f7e747a_mergeImage.png)',
-				},
-				{
-					lanhuBg0:
-						'url(https://lanhu-dds-backend.oss-cn-beijing.aliyuncs.com/merge_image/imgs/e078bf26e9ad496b98a817de3d08492e_mergeImage.png)',
-				},
-				{
-					lanhuBg0:
-						'url(https://lanhu-dds-backend.oss-cn-beijing.aliyuncs.com/merge_image/imgs/e3d1a8f4ba114a5aa801bbd7420e44d2_mergeImage.png)',
-				},
-				{
-					lanhuBg0:
-						'url(https://lanhu-dds-backend.oss-cn-beijing.aliyuncs.com/merge_image/imgs/cf3068f1291645b2a869827e2e33d0a0_mergeImage.png)',
-				},
-				{
-					lanhuBg0:
-						'url(https://lanhu-dds-backend.oss-cn-beijing.aliyuncs.com/merge_image/imgs/6c93508933d94673bc6b3f0909abb937_mergeImage.png)',
-				},
-			],
+			grouponData:[],
 		};
 	},
 	created () {
-		// this.getCategoryTwo(this.currentId)
+		this.onLoadData(this.currentId);
 	},
 	methods: {
 		goToDetail(item){
@@ -351,6 +336,41 @@ export default {
         })
 
 		},
+		onLoadData(currentId) {
+			// 最新团购
+			if (currentId == 0) {
+				this.getLatestGroupon()
+			}
+			// 历史团购
+			if (currentId == 1) {
+				this.getHistoryGroupon()
+			}
+		},
+		getLatestGroupon() {
+			let that = this;
+			latestGroupon({
+				current: 1,
+				size: 1,
+				longitude: that.positionInfo.longitude,
+				latitude: that.positionInfo.latitude
+			}).then(res => {
+
+				this.grouponData = res.data.records;
+				console.log(this.grouponData)
+			})
+		},
+		getHistoryGroupon() {
+			let that = this;
+			historyGroupon({
+				current: 1,
+				size: 1,
+				longitude: that.positionInfo.longitude,
+				latitude: that.positionInfo.latitude
+			}).then(res => {
+
+				that.grouponData = res.data.records;
+			})
+		},
 		clickNav (e) {
 			this.typeId = e.id
 			this.getGoodsPage(e.id)

+ 29 - 546
pages/index/diy/index_mall.vue

@@ -30,7 +30,7 @@
 
 		<view class="good-list">
 			<latestGroupBuying @changeTab="changeTab" :iSshowH="true" @detail="goDetail" :currentId="currentId"
--					:isSortType="false" ref="latestGroupBuying"></latestGroupBuying>
+-					:isSortType="false" :positionInfo="positionInfo" ref="latestGroupBuying"></latestGroupBuying>
 		</view>
 
 		<view v-if="!isLogin">
@@ -50,10 +50,8 @@ import {
 import {
 	mapGetters
 } from "vuex";
-import {
-	getAdsList, getNoticeList, getCategoryOne,
-	getGoodsPage, getIndexData, getGoodsInfo
-} from '../../../api/home.js'
+import {getAdsList, getNoticeList, getCategoryOne,getGoodsPage, getIndexData, getGoodsInfo} from '../../../api/home.js'
+import {latestGroupon, historyGroupon, detailGroupon, goodsDetail} from '../../../api/groupon.js'
 import {
 	goShopDetail
 } from '@/libs/order.js';
@@ -64,7 +62,7 @@ export default {
 	},
 	data () {
 		return {
-			currentId: '',
+			currentId: 0,
 			noticeShow: false,
 			noticeContent: '',
 			tempArr: [],
@@ -73,513 +71,8 @@ export default {
 				current: 1,
 				size: 20,
 			},
-			tempArrBao: [
-				{
-					"id": 72,
-					"image": "https://demo26.crmeb.net/uploads/attach/2021/11/20211112/mid_1608a6e46f559f11328c544fa05ea10b.png",
-					"store_name": "COACH/蔻驰女士swinger腋下包单肩包麻将包豌豆包",
-					"store_info": "COACH/蔻驰女士swinger腋下包单肩包麻将包豌豆包",
-					"cate_id": "79",
-					"price": "3000.00",
-					"ot_price": "2900.00",
-					"sales": "226",
-					"unit_name": "件",
-					"sort": 446,
-					"activity": [],
-					"stock": 258,
-					"vip_price": 0,
-					"is_vip": 0,
-					"couponId": [],
-					"star": [
-						{
-							"product_score": 5,
-							"product_id": 72
-						}
-					],
-					"checkCoupon": false
-				},
-				{
-					"id": 119,
-					"image": "https://demo26.crmeb.net/uploads/attach/2021/12/10/mid_738c68638ab29effeff2e98365ec6dd6.jpg",
-					"store_name": "微星(MSI)GK50Z 机械键盘 红轴 RGB光效 有线 游戏电竞办公键盘 104键 吃鸡键盘 黑色",
-					"store_info": "ceshi123",
-					"cate_id": "38",
-					"price": "0.01",
-					"ot_price": "199.00",
-					"sales": "135",
-					"unit_name": "件",
-					"sort": 999,
-					"activity": [],
-					"stock": 24855,
-					"vip_price": 0,
-					"is_vip": 0,
-					"couponId": [
-						{
-							"id": 23,
-							"product_id": 119,
-							"issue_coupon_id": 218,
-							"title": "",
-							"add_time": 1664522680
-						}
-					],
-					"star": [
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 4,
-							"product_id": 119
-						},
-						{
-							"product_score": 4,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 4,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 2,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 3,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 4,
-							"product_id": 119
-						},
-						{
-							"product_score": 4,
-							"product_id": 119
-						},
-						{
-							"product_score": 3,
-							"product_id": 119
-						},
-						{
-							"product_score": 4,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 4,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 4,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 4,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 4,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 4,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 2,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						},
-						{
-							"product_score": 5,
-							"product_id": 119
-						}
-					],
-					"checkCoupon": false
-				},
-				{
-					"id": 41,
-					"image": "http://demo26.crmeb.net/uploads/attach/2020/10/13/a23b5bc300cc6a965082368f8c657b3d.jpg",
-					"store_name": "华为智选摄像头智能家居监控器无线高清网络摄像头家用全景智能摄像机1080P夜间清晰人像AI智能看护",
-					"store_info": "华为智选摄像头智能家居监控器无线高清网络摄像头家用全景智能摄像机1080P夜间清晰人像AI智能看护",
-					"cate_id": "11,21",
-					"price": "500.00",
-					"ot_price": "1000.00",
-					"sales": "94",
-					"unit_name": "件",
-					"sort": 0,
-					"activity": [],
-					"stock": 1981,
-					"vip_price": 0,
-					"is_vip": 0,
-					"couponId": [],
-					"star": [],
-					"checkCoupon": false
-				},
-				{
-					"id": 51,
-					"image": "http://demo26.crmeb.net/uploads/attach/2020/10/20201014/118bccc3d5499881dd7178c43ebb9346.jpg",
-					"store_name": "极度空间 中秋贺卡 生日卡片 创意3D明信片感恩卡*10",
-					"store_info": "极度空间 中秋贺卡 生日卡片 创意3D明信片感恩卡*10",
-					"cate_id": "40,34",
-					"price": "100.00",
-					"ot_price": "1000.00",
-					"sales": "39",
-					"unit_name": "件",
-					"sort": 0,
-					"activity": [],
-					"stock": 761,
-					"vip_price": 0,
-					"is_vip": 0,
-					"couponId": [],
-					"star": [
-						{
-							"product_score": 5,
-							"product_id": 51
-						}
-					],
-					"checkCoupon": true
-				},
-				{
-					"id": 89,
-					"image": "https://demo26.crmeb.net/uploads/attach/2021/11/20211113/mid_2fbe723632427b0768df24c4f23c6cad.png",
-					"store_name": "家居梵高系列联名款饭盒袋大容量手拎保温实用方便 星月夜饭盒袋",
-					"store_info": "",
-					"cate_id": "35",
-					"price": "350.00",
-					"ot_price": "300.00",
-					"sales": "19",
-					"unit_name": "件",
-					"sort": 553,
-					"activity": [],
-					"stock": 185,
-					"vip_price": 0,
-					"is_vip": 0,
-					"couponId": [],
-					"star": [
-						{
-							"product_score": 5,
-							"product_id": 89
-						}
-					],
-					"checkCoupon": false
-				},
-				{
-					"id": 45,
-					"image": "http://demo26.crmeb.net/uploads/attach/2020/10/20201014/1bfcaad092adb917739ec681f55fb255.jpg",
-					"store_name": "Adidas阿迪达斯男装 2020秋季新款运动服户外跑步训练健身透气舒适时尚休闲夹克外套GD5462 GD5462 L",
-					"store_info": "Adidas阿迪达斯男装 2020秋季新款运动服户外跑步训练健身透气舒适时尚休闲夹克外套GD5462 GD5462 L",
-					"cate_id": "26,27,50,54",
-					"price": "200.00",
-					"ot_price": "500.00",
-					"sales": "11",
-					"unit_name": "件",
-					"sort": 0,
-					"activity": [],
-					"stock": 4984,
-					"vip_price": "120.00",
-					"is_vip": 1,
-					"couponId": [],
-					"star": [
-						{
-							"product_score": 5,
-							"product_id": 45
-						},
-						{
-							"product_score": 5,
-							"product_id": 45
-						},
-						{
-							"product_score": 2,
-							"product_id": 45
-						}
-					],
-					"checkCoupon": false
-				},
-				{
-					"id": 71,
-					"image": "https://demo26.crmeb.net/uploads/attach/2021/09/03/mid_0b209a475fe7a7118dc964407c98542c.jpg",
-					"store_name": "Casio卡西欧女表时尚优雅简约指针防水复古石英手表LTP-1094E-1A",
-					"store_info": "品质保障 全场包邮",
-					"cate_id": "38",
-					"price": "265.00",
-					"ot_price": "265.00",
-					"sales": "6",
-					"unit_name": "件",
-					"sort": 300,
-					"activity": [],
-					"stock": 94,
-					"vip_price": 0,
-					"is_vip": 0,
-					"couponId": [],
-					"star": [
-						{
-							"product_score": 5,
-							"product_id": 71
-						},
-						{
-							"product_score": 5,
-							"product_id": 71
-						},
-						{
-							"product_score": 5,
-							"product_id": 71
-						}
-					],
-					"checkCoupon": false
-				}
-			],
 			isSortType: 0,
-			headItem: {
-				"name": "headerSerch",
-				"timestamp": "1666235374470000",
-				"setUp": {
-					"tabVal": 0
-				},
-				"bgColor": {
-					"title": "背景颜色(渐变)",
-					"name": "bgColor",
-					"default": [
-						{
-							"item": "#F62C2C"
-						},
-						{
-							"item": "#F96E29"
-						}
-					],
-					"color": [
-						{
-							"item": "rgba(242,16,78,1)"
-						},
-						{
-							"item": "rgba(210,41,87,1)"
-						}
-					]
-				},
-				"boxStyle": {
-					"title": "边框样式",
-					"name": "boxStyle",
-					"type": 0,
-					"list": [
-						{
-							"val": "圆角",
-							"icon": "iconPic_fillet"
-						},
-						{
-							"val": "直角",
-							"icon": "iconPic_square"
-						}
-					]
-				},
-				"txtStyle": {
-					"title": "文本位置",
-					"name": "txtStyle",
-					"type": 1,
-					"list": [
-						{
-							"val": "居左",
-							"icon": "icondoc_left"
-						},
-						{
-							"val": "居中",
-							"icon": "icondoc_center"
-						}
-					]
-				},
-				"prConfig": {
-					"title": "背景边距",
-					"val": 8,
-					"min": 0
-				},
-				"mbConfig": {
-					"title": "页面间距",
-					"val": 0,
-					"min": 0
-				},
-				"hotWords": {
-					"list": [
-						{
-							"val": ""
-						}
-					]
-				},
-				"logoConfig": {
-					"type": 1,
-					"header": "设置logo",
-					"title": "",
-					"url": "https://demo26.crmeb.net/uploads/attach/2022/10/20221009/7436ee5680bc5d67c46a6017939475e5.png"
-				},
-				"id": "id1665385357481000"
-			},
+
 			current: 0,
 			noticeList: [],
 			notice: [
@@ -607,8 +100,8 @@ export default {
 			}],
 			positionInfo: {
 				address: '',
-				longitude: '', //经度
-				latitude: '', //纬度
+				longitude: '106.62502', //经度
+				latitude: '26.65214', //纬度
 			},
 
 			user_latitude: '',
@@ -617,12 +110,9 @@ export default {
 	},
 	computed: mapGetters(['isLogin']),
 	created () {
-		// this.getCategoryOne()
-		this.getNoticeList()
-		this.getAdsList()
-		this.getBroGoodsInfo()
-		this.getGoodsInfo()
-		this.getAdsTabList()
+		this.getAdsList();
+		this.getLatestGroupon();
+		this.getCurrentLocation()
 	},
 	onMounted (options) {
 	},
@@ -639,12 +129,8 @@ export default {
 		isLogin: {
 			deep: true, //深度监听设置为 true
 			handler: function (newV, oldV) {
-				// this.getCategoryOne()
-				this.getNoticeList()
 				this.getAdsList()
-				this.getBroGoodsInfo()
-				this.getGoodsInfo()
-				this.getAdsTabList()
+				this.getLatestGroupon()
 			}
 		}
 	},
@@ -655,7 +141,7 @@ export default {
 			uni.getLocation({
 				type: 'wgs84',
 				success: function (res) {
-					console.log(res)
+					console.log("dizhixinxi -> ", res)
 					that.positionInfo.longitude = res.longitude;
 					that.positionInfo.latitude = res.latitude;
 					that.loAcquire(that.positionInfo.longitude, that.positionInfo.latitude)
@@ -682,15 +168,23 @@ export default {
 		pullResh () {
 			if (this.current == 0) {
 				uni.showLoading({ title: '刷新中' });
-				this.getNoticeList()
 				this.getAdsList()
-				this.getBroGoodsInfo()
-				this.getAdsTabList()
-				this.getGoodsInfo()
+				this.getLatestGroupon()
 			} else {
 				this.$refs.latestGroupBuying.getGoodsPage()
 			}
 		},
+		getLatestGroupon() {
+			// let that = this;
+			// latestGroupon({
+			// 	current: 1,
+			// 	size: 1,
+			// 	longitude: that.positionInfo.longitude,
+			// 	latitude: that.positionInfo.latitude
+			// }).then(res => {
+			// 	console.log(res)
+			// })
+		},
 		getGoodsInfo () {
 			getGoodsInfo({
 				current: 1,
@@ -771,7 +265,7 @@ export default {
 		},
 		getAdsList () {
 			getAdsList({
-				type: 1
+				type: 2
 			}).then(res => {
 				if (res.data.length > 0) {
 					this.swiperList = []
@@ -781,18 +275,6 @@ export default {
 				}
 			});
 		},
-		getAdsTabList () {
-			getAdsList({
-				type: 7
-			}).then(res => {
-				this.swiperTabList = []
-				if (res.data.length > 0) {
-					res.data.forEach(element => {
-						this.swiperTabList.push(element.imageUrl)
-					});
-				}
-			});
-		},
 		// 促销列表的点击事件;
 		changeTab (type) {
 			this.goodType = type;
@@ -866,9 +348,10 @@ export default {
 		},
 		clickNav (e) {
 			this.current = e.index
-			if (e.index > 0) {
+			// if (e.index > 0) {
 				this.currentId = e.id
-			}
+			// }
+			// console.log("currentId ->", this.currentId)
 		}
 	}
 }
@@ -1135,7 +618,7 @@ page {
 
 }
 
- 
+
 
 .nav-bar_2 {
 	width: 374px;

+ 2 - 1
utils/request.js

@@ -36,7 +36,7 @@ function baseRequest(url, method, data, {
 	return new Promise((reslove, reject) => {
 		header['Cb-lang'] = uni.getStorageSync('locale') ? uni.getStorageSync('locale') :'zh_cn'
 		uni.request({
-			url: Url + '/api/' + url,
+			url: Url + '/' + url,
 			method: method || 'GET',
 			header: header,
 			data: data || {},
@@ -60,6 +60,7 @@ function baseRequest(url, method, data, {
 					reject(res.data.msg || i18n.t(`系统错误`));
 			},
 			fail: (msg) => {
+				console.log("11111111", Url + '/' + url)
 				let data = {
 					mag: i18n.t(`请求失败`),
 					status: 1 //1没网