12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <view class="web-view">
- <lip-sync />
- <block wx:if="{{webviewUrl}}">
- <web-view src="{{webviewUrl}}" bindmessage="webmessage"></web-view>
- </block>
- <!-- <textarea style="position:fixed;top:0;left:0;width:100%;height:100%;z-index:9999999;white-space: pre-wrap;" value="{{webviewUrl}}" maxlength="10000000000000"></textarea> -->
- <cover-view class="readfile" wx:if="{{readfile}}">
- <cover-view>文件读取中……</cover-view>
- </cover-view>
- <cover-view class="mo" bindtap="hideCS" wx:if="{{showCoupon || showContact}}"></cover-view>
- <cover-view class="bgd" wx:if="{{sendShare}}"></cover-view>
- <cover-view class="dialog invitation-view" wx:if="{{showInvitation}}">
- <cover-view class="title">温馨提示</cover-view>
- <cover-view class="content">请邀请微信好友一起共享VR火调现场</cover-view>
- <cover-view class="btns">
- <button class="btn">微信邀请</button>
- <button class="cancel btn" bindtap="hideInvitation">取消</button>
- </cover-view>
- </cover-view>
- <cover-view class="dialog invitation-view" wx:if="{{showEnd}}">
- <cover-view class="title">温馨提示</cover-view>
- <cover-view class="content">确定要结束“一起逛”吗?</cover-view>
- <cover-view class="btns">
- <button class="btn" bindtap="hideEnd">继续逛</button>
- <button class="cancel btn">结束</button>
- </cover-view>
- </cover-view>
- <cover-view class="dialog invitation-view" wx:if="{{showAlert}}">
- <cover-view class="title">温馨提示</cover-view>
- <cover-view class="content">发起人已结束一起逛模式,房间即将关闭</cover-view>
- <cover-view class="btns">
- <button class="btn" bindtap="hideAlert">确定</button>
- </cover-view>
- </cover-view>
- <cover-view class="dialog invitation-view" wx:if="{{showPacked}}">
- <cover-view class="title">温馨提示</cover-view>
- <cover-view class="content">一起逛房间已满人,是否继续逛</cover-view>
- <cover-view class="btns">
- <button class="btn" bindtap="hidePacked">继续逛</button>
- <button class="cancel btn">取消</button>
- </cover-view>
- </cover-view>
- <cover-view class="dialog invitation-view" wx:if="{{showIsEnd}}">
- <cover-view class="title">温馨提示</cover-view>
- <cover-view class="content">一起逛已结束了,是否继续逛</cover-view>
- <cover-view class="btns">
- <button class="btn" bindtap="hideIsEnd">继续逛</button>
- <button class="cancel btn">取消</button>
- </cover-view>
- </cover-view>
- <cover-view class="dialog invitation-view" wx:if="{{sendShare}}">
- <cover-view class="title">温馨提示</cover-view>
- <cover-view class="content">请邀请微信好友一起共享VR火调现场</cover-view>
- <cover-view class="btns">
- <button class="cancel btn" open-type="share">邀请</button>
- <button class="btn" bindtap="calcShare">取消</button>
- </cover-view>
- </cover-view>
- </view>
- <view wx:if="{{show}}">
- <cover-view class="auth-bg" bindtap="quitHandle">
- </cover-view>
- <cover-view class="auth-layer" style="bottom: {{bottom}}">
- <cover-view class="title">授权使用</cover-view>
- <cover-view class="content">
- <cover-image src="/static/images/logo_big@2x.png"></cover-image>
- <cover-view class="text">广东火调VR申请使用你的微信信息,将使用</cover-view>
- <cover-view class="xian"></cover-view>
- <cover-view class="authul">
- <cover-view class="authli">
- ·您的公开信息(昵称、头像等)
- </cover-view>
- </cover-view>
- </cover-view>
-
- <block wx:if="{{canIUse}}">
- <button class="button" wx:if="{{loginNew}}" bindtap="bindGetUserInfo">允许使用</button>
- <button class="button" wx:if="{{!loginNew}}" open-type="getUserInfo" bindtap="bindGetUserInfo">允许使用</button>
- </block>
-
-
- </cover-view>
- </view>
|