index.wxml 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <view class="web-view">
  2. <lip-sync />
  3. <block wx:if="{{webviewUrl}}">
  4. <web-view src="{{webviewUrl}}" bindmessage="webmessage"></web-view>
  5. </block>
  6. <!-- <textarea style="position:fixed;top:0;left:0;width:100%;height:100%;z-index:9999999;white-space: pre-wrap;" value="{{webviewUrl}}" maxlength="10000000000000"></textarea> -->
  7. <cover-view class="readfile" wx:if="{{readfile}}">
  8. <cover-view>文件读取中……</cover-view>
  9. </cover-view>
  10. <cover-view class="mo" bindtap="hideCS" wx:if="{{showCoupon || showContact}}"></cover-view>
  11. <cover-view class="bgd" wx:if="{{sendShare}}"></cover-view>
  12. <cover-view class="dialog invitation-view" wx:if="{{showInvitation}}">
  13. <cover-view class="title">温馨提示</cover-view>
  14. <cover-view class="content">请邀请微信好友一起共享VR火调现场</cover-view>
  15. <cover-view class="btns">
  16. <button class="btn">微信邀请</button>
  17. <button class="cancel btn" bindtap="hideInvitation">取消</button>
  18. </cover-view>
  19. </cover-view>
  20. <cover-view class="dialog invitation-view" wx:if="{{showEnd}}">
  21. <cover-view class="title">温馨提示</cover-view>
  22. <cover-view class="content">确定要结束“一起逛”吗?</cover-view>
  23. <cover-view class="btns">
  24. <button class="btn" bindtap="hideEnd">继续逛</button>
  25. <button class="cancel btn">结束</button>
  26. </cover-view>
  27. </cover-view>
  28. <cover-view class="dialog invitation-view" wx:if="{{showAlert}}">
  29. <cover-view class="title">温馨提示</cover-view>
  30. <cover-view class="content">发起人已结束一起逛模式,房间即将关闭</cover-view>
  31. <cover-view class="btns">
  32. <button class="btn" bindtap="hideAlert">确定</button>
  33. </cover-view>
  34. </cover-view>
  35. <cover-view class="dialog invitation-view" wx:if="{{showPacked}}">
  36. <cover-view class="title">温馨提示</cover-view>
  37. <cover-view class="content">一起逛房间已满人,是否继续逛</cover-view>
  38. <cover-view class="btns">
  39. <button class="btn" bindtap="hidePacked">继续逛</button>
  40. <button class="cancel btn">取消</button>
  41. </cover-view>
  42. </cover-view>
  43. <cover-view class="dialog invitation-view" wx:if="{{showIsEnd}}">
  44. <cover-view class="title">温馨提示</cover-view>
  45. <cover-view class="content">一起逛已结束了,是否继续逛</cover-view>
  46. <cover-view class="btns">
  47. <button class="btn" bindtap="hideIsEnd">继续逛</button>
  48. <button class="cancel btn">取消</button>
  49. </cover-view>
  50. </cover-view>
  51. <cover-view class="dialog invitation-view" wx:if="{{sendShare}}">
  52. <cover-view class="title">温馨提示</cover-view>
  53. <cover-view class="content">请邀请微信好友一起共享VR火调现场</cover-view>
  54. <cover-view class="btns">
  55. <button class="cancel btn" open-type="share">邀请</button>
  56. <button class="btn" bindtap="calcShare">取消</button>
  57. </cover-view>
  58. </cover-view>
  59. </view>
  60. <view wx:if="{{show}}">
  61. <cover-view class="auth-bg" bindtap="quitHandle">
  62. </cover-view>
  63. <cover-view class="auth-layer" style="bottom: {{bottom}}">
  64. <cover-view class="title">授权使用</cover-view>
  65. <cover-view class="content">
  66. <cover-image src="/static/images/logo_big@2x.png"></cover-image>
  67. <cover-view class="text">广东火调VR申请使用你的微信信息,将使用</cover-view>
  68. <cover-view class="xian"></cover-view>
  69. <cover-view class="authul">
  70. <cover-view class="authli">
  71. ·您的公开信息(昵称、头像等)
  72. </cover-view>
  73. </cover-view>
  74. </cover-view>
  75. <block wx:if="{{canIUse}}">
  76. <button class="button" wx:if="{{loginNew}}" bindtap="bindGetUserInfo">允许使用</button>
  77. <button class="button" wx:if="{{!loginNew}}" open-type="getUserInfo" bindtap="bindGetUserInfo">允许使用</button>
  78. </block>
  79. </cover-view>
  80. </view>