大数据平台的小程序版本

mine.wxml 3.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <!--pages/mine/mine.wxml-->
  2. <custom-header title="问星数据" isBold="{{true}}"></custom-header>
  3. <view class="mine" style="margin-top:{{safeAreaTop}}px">
  4. <view class="userInfo">
  5. <view class="headImg">
  6. <open-data class="head" type="userAvatarUrl"></open-data>
  7. </view>
  8. <view class="name" wx:if="{{userInfo&userInfo.real_name}}">{{userInfo.real_name}}</view>
  9. <open-data class="name" wx:else type="userNickName" lang="zh_CN"></open-data>
  10. </view>
  11. <view class="business">
  12. <view class="business_item" bindtap="goPageClaim">
  13. <image src="../../assets/img/mine_renling.png" mode="widthFix"></image>
  14. <text>我的视频号</text>
  15. </view>
  16. <view class="business_item" data-path="/pages/followAccount/followAccount" bindtap="toUrl">
  17. <image src="../../assets/img/guanzhu@2x.png" mode="widthFix"></image>
  18. <text>收藏的视频号</text>
  19. </view>
  20. <view class="business_item" data-path="'/newNotice/allNotice/allNotice'" bindtap="toUrl">
  21. <image src="../../assets/img/news.png" mode="widthFix"></image>
  22. <text>消息订阅</text>
  23. </view>
  24. </view>
  25. <view class="list">
  26. <view class="item" data-path="/pages/followVideo/followVideo" bindtap="toUrl">
  27. <image mode="widthFix" class="icon" src="../../assets/img/followVideo2.png"></image>
  28. <view class="right">
  29. <text>收藏的视频</text>
  30. <image class="back" mode="widthFix" src="../../assets/img/jt_right.png"></image>
  31. </view>
  32. </view>
  33. <view class="item" bindtap="goExtension">
  34. <image mode="widthFix" class="icon" src="../../assets/img/invite_iocn.png"></image>
  35. <view class="right">
  36. <text>视频号冷启动</text>
  37. <image class="back" mode="widthFix" src="../../assets/img/jt_right.png"></image>
  38. </view>
  39. </view>
  40. <view class="item" bindtap="qunEvent">
  41. <image mode="widthFix" class="icon" src="../../assets/img/mine_qun2.png"></image>
  42. <view class="right">
  43. <text>官方交流群</text>
  44. <image class="back" mode="widthFix" src="../../assets/img/jt_right.png"></image>
  45. </view>
  46. </view>
  47. <view class="item" bindtap="goWebView">
  48. <image mode="widthFix" class="icon" src="../../assets/img/mine_gzh2.png"></image>
  49. <view class="right">
  50. <text>关注公众号</text>
  51. <image class="back" mode="widthFix" src="../../assets/img/jt_right.png"></image>
  52. </view>
  53. </view>
  54. </view>
  55. </view>
  56. <image src="../../assets/img/mine_bg_pc.png" mode="widthFix" class="mine_bg_pc"></image>
  57. <view class="pc_hint">PC端体验更佳</view>
  58. <view class="pc_http">
  59. sph.wenxingshuju.com
  60. </view>
  61. <view class="copyButton" style="margin-bottom:{{isIpx?'180rpx':'130rpx;'}}" bindtap="copyEvent">复制网址</view>
  62. <van-popup show="{{qunFlag}}" custom-style="height: 700rpx" position="bottom" round="{{true}}" close-on-click-overlay="{{true}}" closeable="{{true}}" close-icon="https://kx-bigdata.oss-cn-beijing.aliyuncs.com/wxVideo/close_888.png" bind:close="cancelTask">
  63. <view class="authorizeContent">
  64. <view class="title">扫码进群,联系我们</view>
  65. <view class="evmCantiner">
  66. <image src="https://www.wenxingshuju.com/kol_wx_qun_evm.jpg" mode="widthFix" class="evm"></image>
  67. </view>
  68. <view class="claimEvmHint">保存二维码 > 微信扫一扫 > 加入官方交流群</view>
  69. <view class="buttons">
  70. <button class="button buttonyes" style="width:600rpx" bindtap="downLoadImgEvent">保存到相册</button>
  71. </view>
  72. </view>
  73. </van-popup>
  74. <tabbar selected="4"></tabbar>