123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <!--nova-werun/components/my/index.wxml-->
- <view class="all" style="height: {{screenHeight}}rpx;">
- <view class="navbox" style="height: {{navheight}}rpx;">
- <view class="nav">
- <view class="nav-title">个人中心</view>
- </view>
- </view>
- <view class="perxonalbox">
- <image class="avatar" src="{{User1List[0].avatar||'https://file-cloud.fmode.cn/qpFbRRSZrO/20241120/63c55i022235020.png?imageView2/1/w/200/h/200'}}" mode="scaleToFill"></image>
- <view class="namebox">
- <view class="name">{{User1List[0].nickname}}</view>
- <!-- <view class="databox" data-url="../../pages/my/my-profile/index" bindtap="gourl">
- <view class="data">完善资料</view>
- <image src="https://file-cloud.fmode.cn/qpFbRRSZrO/20241120/1ssc1a102512989.png?imageView2/1/w/200/h/200"></image>
- </view> -->
- <view class="numberbox">
- <view wx:if="{{profile1List2[0].center}}" class="num">{{profile1List2[0].user.mobile}} | {{profile1List2[0].center.name}}</view>
- <view wx:if="{{!profile1List2[0].center}}" class="num">暂未认证</view>
- </view>
- </view>
- <view class="picbox">
- <button style="background: none;" open-type="contact">
- <image src="https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/k17mbg095037093.png"></image>
- </button>
-
- <image src="https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/dkebge095058533.png" data-url="../../pages/my/my-profile/index" bindtap="gourl2" data-type="完善资料"></image>
- </view>
- </view>
- <view class="infobox">
- <view class="info">
- <view class="info-num">{{circlecount}}</view>
- <view class="info-tex">动态</view>
- </view>
- <view class="info">
- <view class="info-num">{{meChick}}</view>
- <view class="info-tex">打卡</view>
- </view>
- <view class="info">
- <view class="info-num">{{likesCount}}</view>
- <view class="info-tex">点赞</view>
- </view>
- </view>
- <view class="textbox">
- <view class="text1box" bindtap="gourl" data-url="/nova-werun/pages/my/my-way/index">
- <image src="https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/rpfahq101147971.png"></image>
- <view class="text1">我的路线</view>
- <van-icon name="arrow" size='30rpx' />
- </view>
- <view class="text1box" bindtap="gourl" data-url="../../pages/circle/my-circle/index">
- <image src="https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/rpfahq101147971.png"></image>
- <view class="text1">我的动态</view>
- <van-icon name="arrow" size='30rpx' />
- </view>
- <view class="text1box" data-url="../../pages/my/my-profile/index" data-type="资料认证" bindtap="gourl2">
- <image src="https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/rpfahq101147971.png"></image>
- <view class="text1">资料认证</view>
- <van-icon name="arrow" size='30rpx' />
- </view>
- <view class="text1box" bindtap="gourl" data-url="../../pages/my/feedback/index">
- <image src="https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/rpfahq101147971.png"></image>
- <view class="text1">问题反馈</view>
- <van-icon name="arrow" size='30rpx' />
- </view>
- <view class="text1box" bind:tap="openFile">
- <image src="https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/rpfahq101147971.png"></image>
- <view class="text1">隐私协议</view>
- <van-icon name="arrow" size='30rpx' />
- </view>
- <view class="text1box" bind:tap="outLogin">
- <image src="https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/rpfahq101147971.png"></image>
- <view class="text1">退出登录</view>
- <van-icon name="arrow" size='30rpx' />
- </view>
- </view>
- </view>
|