| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 | <!--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].department}}" class="num">{{profile1List2[0].user.mobile}} | {{profile1List2[0].department.name}}{{profile1List2[0].center.name}}</view>                <view wx:if="{{!profile1List2[0].department}}" class="num">暂未认证</view>            </view>        </view>        <view class="picbox">            <image src="https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/k17mbg095037093.png"></image>            <image src="https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/dkebge095058533.png"></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">0</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">            <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" bindtap="gourl">            <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">            <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">            <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">            <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>
 |