1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <!--pages/mine/mine.wxml-->
- <custom-header title="问星数据" isBold="{{true}}"></custom-header>
- <view class="mine" style="margin-top:{{safeAreaTop}}px">
- <view class="userInfo">
- <view class="headImg">
- <open-data class="head" type="userAvatarUrl"></open-data>
- </view>
- <view class="name" wx:if="{{userInfo&userInfo.real_name}}">{{userInfo.real_name}}</view>
- <open-data class="name" wx:else type="userNickName" lang="zh_CN"></open-data>
- </view>
- <view class="business">
- <view class="business_item" bindtap="goPageClaim">
- <image src="../../assets/img/mine_renling.png" mode="widthFix"></image>
- <text>我的视频号</text>
- </view>
- <view class="business_item" data-path="/pages/followAccount/followAccount" bindtap="toUrl">
- <image src="../../assets/img/guanzhu@2x.png" mode="widthFix"></image>
- <text>收藏的视频号</text>
- </view>
- <view class="business_item" data-path="'/newNotice/allNotice/allNotice'" bindtap="toUrl">
- <image src="../../assets/img/news.png" mode="widthFix"></image>
- <text>消息订阅</text>
- </view>
- </view>
- <view class="list">
- <view class="item" data-path="/pages/followVideo/followVideo" bindtap="toUrl">
- <image mode="widthFix" class="icon" src="../../assets/img/followVideo2.png"></image>
- <view class="right">
- <text>收藏的视频</text>
- <image class="back" mode="widthFix" src="../../assets/img/jt_right.png"></image>
- </view>
- </view>
- <view class="item" bindtap="goExtension">
- <image mode="widthFix" class="icon" src="../../assets/img/invite_iocn.png"></image>
- <view class="right">
- <text>视频号冷启动</text>
- <image class="back" mode="widthFix" src="../../assets/img/jt_right.png"></image>
- </view>
- </view>
- <view class="item" bindtap="qunEvent">
- <image mode="widthFix" class="icon" src="../../assets/img/mine_qun2.png"></image>
- <view class="right">
- <text>官方交流群</text>
- <image class="back" mode="widthFix" src="../../assets/img/jt_right.png"></image>
- </view>
- </view>
- <view class="item" bindtap="goWebView">
- <image mode="widthFix" class="icon" src="../../assets/img/mine_gzh2.png"></image>
- <view class="right">
- <text>关注公众号</text>
- <image class="back" mode="widthFix" src="../../assets/img/jt_right.png"></image>
- </view>
- </view>
- </view>
- </view>
- <image src="../../assets/img/mine_bg_pc.png" mode="widthFix" class="mine_bg_pc"></image>
- <view class="pc_hint">PC端体验更佳</view>
- <view class="pc_http">
- sph.wenxingshuju.com
- </view>
- <view class="copyButton" style="margin-bottom:{{isIpx?'180rpx':'130rpx;'}}" bindtap="copyEvent">复制网址</view>
- <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">
- <view class="authorizeContent">
- <view class="title">扫码进群,联系我们</view>
- <view class="evmCantiner">
- <image src="https://www.wenxingshuju.com/kol_wx_qun_evm.jpg" mode="widthFix" class="evm"></image>
- </view>
- <view class="claimEvmHint">保存二维码 > 微信扫一扫 > 加入官方交流群</view>
- <view class="buttons">
- <button class="button buttonyes" style="width:600rpx" bindtap="downLoadImgEvent">保存到相册</button>
- </view>
- </view>
- </van-popup>
- <tabbar selected="4"></tabbar>
|