Browse Source

bug修改

twt 2 years ago
parent
commit
c4420bdbd2
3 changed files with 27 additions and 18 deletions
  1. 15 9
      pages/activity/jkDetail.vue
  2. 11 8
      pages/index/index.vue
  3. 1 1
      pages/user/user.vue

+ 15 - 9
pages/activity/jkDetail.vue

@@ -45,7 +45,8 @@
 				<view class="signupLine" v-for="(item,index) in info.signUserList">
 					<view class="signupLineL">
 						<img :src="item.headImg" alt="" class="signupLineLImg">
-						<view class="signupLineLName">{{item.nickName?item.nickName:'微信昵称'}}</view>
+						<view class="signupLineLName" v-if="item.nickName!='null'">{{item.nickName?item.nickName:'微信用户'}}</view>
+						<view class="signupLineLName" v-else>微信用户</view>
 					</view>
 					<view class="signupLineM">{{item.plateNumber?item.plateNumber:''}}</view>
 					<view class="signupLineR">{{item.createTime}}</view>
@@ -591,15 +592,20 @@
 				}); 
 			},
 			signUp(){
-				this.info.shopList.forEach(item=>{
-					if(item.id == this.shopInfo.id){
-						this.ckshopdata=item;
-						this.shopName=item.shopName;
-					}
-				})
-				
+				if(this.userInfo){
+					this.info.shopList.forEach(item=>{
+						if(item.id == this.shopInfo.id){
+							this.ckshopdata=item;
+							this.shopName=item.shopName;
+						}
+					})
+					
+					
+					this.bmShow=true;
+				}else{
+					this.authorizShow=true
+				}
 				
-				this.bmShow=true;
 			},
 			nobmshow(){
 				this.bmShow=false;

+ 11 - 8
pages/index/index.vue

@@ -88,15 +88,18 @@
 		</view>
 		
 		<!-- 服务顾问 -->
-		 <view class="adviser" v-if="managerInfo" @click="goMUsers()">
-			<view class="adviserLeft">
-				<img v-if="managerInfo.avatar" :src="managerInfo.avatar" alt="" class="advisertx">
-				<img v-else src="../../static/timg/pic_def_ava@2x.png" alt="" class="advisertx">
-				<view class="adviserNema">{{managerInfo.name}}</view>
-				<view class="adviserms" :style="{border:'1px solid #'+themeColor,color:'#'+themeColor}">服务顾问</view>
+		<view v-if="homeCardList.openMUsers">
+			<view class="adviser" v-if="homeCardList.openMUsers.showType!=2&&managerInfo" @click="goMUsers()">
+				<view class="adviserLeft">
+					<img v-if="managerInfo.avatar" :src="managerInfo.avatar" alt="" class="advisertx">
+					<img v-else src="../../static/timg/pic_def_ava@2x.png" alt="" class="advisertx">
+					<view class="adviserNema">{{managerInfo.name}}</view>
+					<view class="adviserms" :style="{border:'1px solid #'+themeColor,color:'#'+themeColor}">服务顾问</view>
+				</view>
+				<img src="../../static/timg/icon_arrow_right.png" alt="" class="adviserJt">
 			</view>
-			<img src="../../static/timg/icon_arrow_right.png" alt="" class="adviserJt">
 		</view>
+		 
 		<!-- 中间功能应用模块 -->
 		<view class="modular" v-if="homeCardList.application.length>0">
 					<view class="swiper-item">
@@ -457,7 +460,7 @@
 						
 					}else if(item.bizType==15){ //商品详情
 						uni.navigateTo({
-							url:'../shop/goodsDetail?id=CD2D70DC-706C-4441-9864-33BD19457CAE'
+							url:'../shop/goodsDetail?id='+item.bizId
 						})
 					}
 					

+ 1 - 1
pages/user/user.vue

@@ -72,7 +72,7 @@
 		</view>
 
 		<!-- 店铺信息 -->
-		<view class="shopBox">
+		<view class="shopBox" v-if="userInfo">
 
 			<view class="shopCont">
 				<view class="shopName">{{numList.shopInfo.shopName}}</view>