浏览代码

积分兑换详情

twt 2 年之前
父节点
当前提交
7a4df9c545
共有 2 个文件被更改,包括 12 次插入4 次删除
  1. 10 2
      pages/integral/integralgoodsDetail.vue
  2. 2 2
      pages/integral/recordDetail.vue

+ 10 - 2
pages/integral/integralgoodsDetail.vue

@@ -59,7 +59,7 @@
 								<span class="jfspan1">{{info.integral}}</span> <span class="jfspan2">积分</span>
 								<span class="marketvalue" v-if="info.salePrice">市场价 ¥{{info.salePrice}}</span>
 							</view>
-							<view class="surplus">剩余{{shopInfo.qty?shopInfo.qty:0}}个</view>
+							<view class="surplus">剩余{{shopInfo.qty>0?shopInfo.qty:0}}个</view>
 						</view>
 					</view>
 				</view>
@@ -127,7 +127,7 @@
    		<view style="padding: 0 24rpx; height: 45vh;overflow-y: scroll;">
    			<view class="ckshopLine" v-for="(item,index) in info.shopList" @click="ckshop2(item)">
 				<view class="shopName"> {{item.ShopName}}</view>
-   			    <view class="surplus" style="padding-top: 2rpx;">剩余{{item.qty?item.qty:0}}个</view>
+   			    <view class="surplus" style="padding-top: 2rpx;">剩余{{item.qty>0?item.qty:0}}个</view>
    			</view>
    		</view>
    		
@@ -277,6 +277,14 @@
 					});
 					return false;
 				}
+				if(this.shopInfo.qty<0){
+					uni.showToast({
+						title: '库存不足',
+						icon: 'none',
+						duration: 3000
+					});
+					return false;
+				}
 				if(!this.shopInfo.shopId){
 					uni.showToast({
 						title: '请选择服务门店',

+ 2 - 2
pages/integral/recordDetail.vue

@@ -419,9 +419,9 @@
 	}
 
 	.timeLeft {
-		font-size: 32rpx;
+		font-size: 30rpx;
 		color: #3C3C3C;
-
+        font-weight: 500;
 	}
 
 	.timeRight {