默认提交
Showing
1 changed file
with
10 additions
and
8 deletions
| ... | @@ -21,7 +21,7 @@ | ... | @@ -21,7 +21,7 @@ |
| 21 | </view> | 21 | </view> |
| 22 | <!-- 用户名称 --> | 22 | <!-- 用户名称 --> |
| 23 | <view class="name"> | 23 | <view class="name"> |
| 24 | <view class="tt">{{isAuth ? ownerMember.memberName : '我'}}</view> | 24 | <view class="tt">{{ ownerMember.memberName || '我'}}</view> |
| 25 | <image wx:if="{{ownerMember.mySelf == 1 && detailData.customMade == 1}}" bindtap="showUpdateUserInfoDialog" class="name-edit" mode="widthFix" src="../../image/blessing/icon-edit.png" /> | 25 | <image wx:if="{{ownerMember.mySelf == 1 && detailData.customMade == 1}}" bindtap="showUpdateUserInfoDialog" class="name-edit" mode="widthFix" src="../../image/blessing/icon-edit.png" /> |
| 26 | </view> | 26 | </view> |
| 27 | <!-- 编辑房间信息 组队时候才显示 --> | 27 | <!-- 编辑房间信息 组队时候才显示 --> |
| ... | @@ -41,11 +41,15 @@ | ... | @@ -41,11 +41,15 @@ |
| 41 | </view> | 41 | </view> |
| 42 | <!-- 邀请 房主或组队模式显示 --> | 42 | <!-- 邀请 房主或组队模式显示 --> |
| 43 | <view class="group-item" wx:if="{{options.t || ownerMember.mySelf == 1}}"> | 43 | <view class="group-item" wx:if="{{options.t || ownerMember.mySelf == 1}}"> |
| 44 | <block wx:if="{{detailData.customMade == 1}}"> | 44 | <button wx:if="{{!isAuth}}" open-type="getUserInfo" bindgetuserinfo="bindGetUserInfo" class="group-item-inv"> |
| 45 | <button data-data="join" open-type="share" class="group-item-inv"> | 45 | <image class="icon-inv" mode="widthFix" src="../../image/icon/icon-inv.png" /> |
| 46 | <image class="icon-inv" mode="widthFix" src="../../image/icon/icon-inv.png" /> | 46 | </button> |
| 47 | </button> | 47 | <button wx:else data-data="join" open-type="share" class="group-item-inv"> |
| 48 | </block> | 48 | <image class="icon-inv" mode="widthFix" src="../../image/icon/icon-inv.png" /> |
| 49 | </button> | ||
| 50 | <!-- <button open-type="getUserInfo" bindgetuserinfo="bindGetUserInfo" class="btn btn1"> | ||
| 51 | 邀亲友组团拜年 | ||
| 52 | </button> --> | ||
| 49 | </view> | 53 | </view> |
| 50 | </view> | 54 | </view> |
| 51 | <!-- 更多 --> | 55 | <!-- 更多 --> |
| ... | @@ -152,11 +156,9 @@ | ... | @@ -152,11 +156,9 @@ |
| 152 | </block> | 156 | </block> |
| 153 | <!-- 已授权 --> | 157 | <!-- 已授权 --> |
| 154 | <block wx:else> | 158 | <block wx:else> |
| 155 | <!-- 11111 --> | ||
| 156 | <button data-data="join" data-act="made" open-type="share" class="btn btn1"> | 159 | <button data-data="join" data-act="made" open-type="share" class="btn btn1"> |
| 157 | 邀亲友组团拜年 | 160 | 邀亲友组团拜年 |
| 158 | </button> | 161 | </button> |
| 159 | <!-- <button bindtap="onBlessMakeHandler" class="btn btn2">定制我的祝福</button> --> | ||
| 160 | <button wx:if="{{!isAuth}}" open-type="getUserInfo" bindgetuserinfo="getUserInfo3" class="btn btn2"> | 162 | <button wx:if="{{!isAuth}}" open-type="getUserInfo" bindgetuserinfo="getUserInfo3" class="btn btn2"> |
| 161 | 定制我的祝福 | 163 | 定制我的祝福 |
| 162 | </button> | 164 | </button> | ... | ... |
-
Please register or sign in to post a comment