| 
					
				 | 
			
			
				@@ -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: '请选择服务门店',
 
			 |