浏览代码

提交代码,注意合并

pangqijun 1 年之前
父节点
当前提交
b675c3541b
共有 3 个文件被更改,包括 13 次插入8 次删除
  1. 1 1
      pages/groupbuying_details/index.vue
  2. 5 1
      pages/index/diy/index_mall.vue
  3. 7 6
      pages/index/diy/module/mescrollUni-item.vue

+ 1 - 1
pages/groupbuying_details/index.vue

@@ -81,7 +81,7 @@
 							<view class="groupbuying-log " hover-class="none" hover-stop-propagation="false">
 								<view class="log-top">
 									<text class="log-top-title">团购记录</text>
-									<text class="log-top-count">共{{storeInfo.grouponUserTotal}}条</text>
+									<text class="log-top-count">共{{storeInfo.grouponUsers.length}}条</text>
 								</view>
 								<view v-if="storeInfo.grouponUsers">
 

+ 5 - 1
pages/index/diy/index_mall.vue

@@ -30,7 +30,7 @@
 
 			<!-- 轮播 -->
 			<view class="swiper-group">
-				<u-swiper height="210" :list="swiperList" @change="e => current = e.current" :autoplay="false" keyName="imageUrl"  @click="clickImageUrl">
+				<u-swiper height="210" :list="swiperList" @change="e => current = e.current" :autoplay="true" keyName="imageUrl"  @click="clickImageUrl">
 					<view slot="indicator" class="indicator">
 						<view class="indicator__dot" v-for="(item, index) in swiperList" :key="index"
 							:class="[index === current && 'indicator__dot--active']">
@@ -229,12 +229,14 @@ export default {
 				latitude: this.markers[0].latitude || '', /* 纬度 */
 				longitude: this.markers[0].longitude || '', /* 经度 */
 				success: (res) => {
+					console.log("changeAddress ---> ", res)
 					if (res.name){
 						this.markers[0].latitude = res.latitude;
 						this.markers[0].longitude =res.longitude;
 						this.markers[0].label.content = res.name;
 						uni.setStorageSync('user_longitude', res.longitude);
 						uni.setStorageSync('user_latitude', res.latitude);
+						uni.setStorageSync('user_address', res.address);
 					}
 				},
 				fail: function (err) {
@@ -250,6 +252,7 @@ export default {
 				success: function (res) {
 					uni.setStorageSync('user_longitude', res.longitude);
 					uni.setStorageSync('user_latitude', res.latitude);
+
 					console.log("dizhixinxi -> ", res)
 					that.markers[0].longitude = res.longitude;
 					that.markers[0].latitude = res.latitude;
@@ -261,6 +264,7 @@ export default {
 						// }
 						that.positionInfo.address = res.result.address_reference.landmark_l2.title
 						that.markers[0].label.content = res.result.address_reference.landmark_l2.title
+						uni.setStorageSync('user_address', res.result.address);
 					})
 				}
 			});

+ 7 - 6
pages/index/diy/module/mescrollUni-item.vue

@@ -99,14 +99,16 @@
 					current: page.num,
 					size: 10,
 				}
+				let longitude = uni.getStorageSync('user_longitude');
+				let latitude = uni.getStorageSync('user_latitude');
+				let address = uni.getStorageSync('user_address');
 				if (this.index === 0){
-						let longitude = uni.getStorageSync('user_longitude');
-						let latitude = uni.getStorageSync('user_latitude');
 						latestGroupon({
 							current: page.num,
 							size: 10,
 							longitude: longitude,
-							latitude: latitude
+							latitude: latitude,
+							address: address
 						}).then(res => {
 							this.mescroll.endSuccess(res.data.records.length,res.data.records.length === 10);
 							if (page.num === 1) this.list = []; //如果是第一页需手动制空列表
@@ -119,13 +121,12 @@
 						})
 				}
 				if (this.index === 1){
-						let longitude = uni.getStorageSync('user_longitude');
-						let latitude = uni.getStorageSync('user_latitude');
 						historyGroupon({
 							current: page.num,
 							size: 10,
 							longitude: longitude,
-							latitude: latitude
+							latitude: latitude,
+							address: address
 						}).then(res => {
 							this.mescroll.endSuccess(res.data.records.length,res.data.records.length === 10);
 							if (page.num === 1) this.list = []; //如果是第一页需手动制空列表