1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <view class="shareGame">
- <button wx:if="{{authEnter}}" class="auth_enter" open-type="getUserInfo" bindgetuserinfo="getUserInfoFun"></button>
- <image src="/image/zuanqianxiaojiqiao_bg.png" class="bg" mode="widthFix"></image>
- <view class="gamecontent">
- <view class="gameinfo">
- <view class="user">
- <image class="icon" src="{{currentInfo.mem_avatar}}"></image>
- <text class="name">{{currentInfo.mem_nickname}}</text>
- </view>
- <image class="title" src="/image/fenxianghaoyouxi.png"></image>
- </view>
- <view class="game">
- <image src="{{result.game.icon}}"></image>
- </view>
- <view class="name">
- {{result.game.gamename}}
- </view>
- <view class="des">
- {{result.game.oneword}}
- </view>
- <text class="play" bindtap="switchTo" data-path="/pages/game/game">更多好玩,更多红包</text>
- <navigator class="tomore" target="miniProgram" app-id="{{result.game.mini_app_id}}" version="release" path="{{result.game.url}}">玩一玩</navigator>
- </view>
- </view>
- <!-- 新用户红包 -->
- <view class='redPackMask' wx:if="{{ShowRedPackMask}}">
- <view class='content {{redAnimation ? "packAnimation" : ""}}'>
- <image class='bg' src='/image/shouye_icon_hongbaobeijing{{getSuccess ? 2 : ""}}.png'></image>
- <view class='info info1' wx:if="{{getSuccess}}">
- <text class='info1_top'>恭喜!</text>
- <view class='info1_des'>现金 <text>{{redPackAward}}</text> 元已入账</view>
- <!-- <view class='info1_des' wx:elif="{{mpType === 'gd'}}"><text>{{redPackAward}}</text> 金币已入账</view> -->
- <text class='info1_tips'>满一定金额,可提现至微信</text>
- <button class='info1_save' bindtap='CloseRedPack'>立即查看</button>
- </view>
- <view class='info info2' wx:else>
- <image class='info2_avatar' src='{{redIcon}}'></image>
- <text class='info2_title'>{{redName}}</text>
- <text class='info2_des'>给你发一个红包</text>
- <text class='info2_text'>恭喜发财,大吉大利</text>
- <button class='info2_open' open-type="getUserInfo" bindgetuserinfo="getUserInfoFun">
- <image src='/image/hongbao2.png'></image>
- </button>
- </view>
- </view>
- </view>
|