Quellcode durchsuchen

修复已知bug

pangqijun vor 1 Jahr
Ursprung
Commit
cbc83c0809

+ 9 - 7
pages/groupbuying/pickupVerification/index.vue

@@ -87,16 +87,16 @@ export default {
 	},
 	onLoad () {
 		if (this.isLogin) {
-			this.getUserInfo();
+			// this.getUserInfo();
 			// #ifdef APP-PLUS
-			this.formatSize()
+			// this.formatSize()
 			// 获取版本号
-			plus.runtime.getProperty(plus.runtime.appid, (inf) => {
-				console.log(inf.version)
-				this.version = inf.version;
-			});
+			// plus.runtime.getProperty(plus.runtime.appid, (inf) => {
+			// 	console.log(inf.version)
+			// 	this.version = inf.version;
+			// });
 			// #endif
-			this.setLang();
+			// this.setLang();
 		} else {
 			toLogin();
 		}
@@ -125,8 +125,10 @@ export default {
 
 
 		confirmOrder () {
+		  let that = this;
 			confirmOrder(this.pickupCode).then(res => {
 				uni.$u.toast(res.msg)
+        that.$refs.MescrollItem[that.tabIndex].downCallback();
 			}).catch(err => {
 				uni.$u.toast(err)
 			})

+ 4 - 3
pages/groupbuying_details/index.vue

@@ -128,8 +128,9 @@
 										<view class="goodsImageView">
 											<image :src="item.goodsCover" mode="scaleToFill"  @click="getGoodsDetails(item.id)"/>
 
-											<view v-if="item.isSale === 0" class="removeSth">
-												<text>已下架</text>
+											<view v-if="item.isSale === 0 || item.totalStock < 1" class="removeSth">
+												<text v-if="item.isSale === 0">已下架</text>
+												<text v-if="item.totalStock < 1">已售罄</text>
 											</view>
 										</view>
 
@@ -143,7 +144,7 @@
 													<text class="line-thr">{{item.salePrice}}</text>
 												</view>
 
-												<view class="u-number-box" v-if="!storeInfo.isEnd && storeInfo.goodsList[index].isSale === 1 ">
+												<view class="u-number-box" v-if="!storeInfo.isEnd && storeInfo.goodsList[index].isSale === 1 && item.totalStock > 0">
 													<u-number-box :disabled="!isShowBottom" :min=0 :max="10" v-model="storeInfo.goodsList[index].num" @change="addGoodsNum"></u-number-box>
 												</view>
 											</view>

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

@@ -67,11 +67,11 @@
 				</view>
 
 				<view class="tips2">
-          您所在的城市没有在拼团中的团购,请切换城市或查看历史团购。团购目前仅支持的城市如下:
+          您当前所在的城市尚未开放团购,目前可支持的城市如下:
 				</view>
 
 				<view class="tips3">
-          合肥市
+          安徽省合肥市
 				</view>
 
 				<view class="tips4">
@@ -230,7 +230,6 @@ export default {
 				success: (res) => {
           console.log(res)
 					if (res.address){
-            console.log("wojinlail ...")
 						this.markers[0].latitude = res.latitude;
 						this.markers[0].longitude =res.longitude;
 						this.markers[0].label.content = res.name;
@@ -255,13 +254,12 @@ export default {
 					uni.setStorageSync('user_longitude', res.longitude);
 					uni.setStorageSync('user_latitude', res.latitude);
 					uni.setStorageSync('user_address', res.latitude);
-					console.log("dizhixinxi -> ", res)
 					that.markers[0].longitude = res.longitude;
 					that.markers[0].latitude = res.latitude;
 					getAddress(res.longitude, res.latitude).then(res => {
             uni.setStorageSync('user_address', res.result.address);
 						//初始化地址信息
-						console.log("++++++++++初始化地址信息++++++++++++", res)
+						// console.log("++++++++++初始化地址信息++++++++++++", res)
 						// if (res.result.address_component.city.indexOf('上海') === -1){
 						// 	that.showTips= true;
 						// }

+ 8 - 0
pages/index/index.vue

@@ -35,6 +35,14 @@ export default {
 		// 	//设置下方的Menus菜单,才能够让发送给朋友与分享到朋友圈两个按钮可以点击
 		// 	menus:["shareAppMessage","shareTimeline"]
 		// })
+    let o = uni.getSystemInfoSync();
+    console.log("设备类型:" + o.deviceType + "\ndeviceBrand:" + o.deviceBrand + "\ndeviceModel:" + o.deviceModel
+        + "\nosName:" + o.osName
+        + "\nosVersion:" + o.osVersion
+        + "\nhostName:" + o.hostName
+        + "\nhostVersion:" + o.hostVersion
+        + "\nuniPlatform:" + o.uniPlatform)
+
 	},
 	methods: {
 	},