mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 20:09:37 +08:00
37 lines
2.0 KiB
Plaintext
37 lines
2.0 KiB
Plaintext
<view class="page">
|
|
<view bindtap="navpersonalData" style="padding: 24rpx;background:white;display: flex;margin-top:20rpx;border-radius: 20rpx;padding-right: 0;">
|
|
<view style="width:164rpx;height:164rpx;border-radius:50%;overflow:hidden;">
|
|
<image src="{{memberInfo.avatar? memberInfo.avatar:'/images/user-unlogin.jpg'}}" mode="widthFix" style="width: 100%;"></image>
|
|
</view>
|
|
<view style="font-size:12pt;line-height:164rpx;width: 66%;text-indent: 40rpx;">{{memberInfo.nickname? memberInfo.nickname:'登录'}}</view>
|
|
<view class="iconBox">
|
|
<text class="iconfont iconyou" style="color:#939393;line-height:164rpx;"></text>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="my-page">
|
|
|
|
<view class="my-mainfun-moudel1">
|
|
<block wx:for="{{customerPages[0]}}" wx:for-item="list" wx:key="i">
|
|
<view class="main-item2" bindtap='navigateTo' data-url="{{list.url}}" style="{{list.marginbottom?'margin-bottom:25rpx;':''}};{{list.bordernone?'border-bottom:none':''}};border-radius:{{list.borderRadius}}" hidden='{{list.hide}}'>
|
|
<view class="main-item-text1">
|
|
<view class="text-titl1">{{list.zh}}</view>
|
|
</view>
|
|
<view class="iconBox">
|
|
<text class="iconfont iconyou" style="color:#939393"></text>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<!-- tabBar -->
|
|
<view class="tab-bar">
|
|
<view wx:for="{{tabBarList}}" wx:key="index" class="tab-bar-item {{item.bulge?'bulge':''}}" data-path="{{item.pagePath}}" data-index="{{index}}" bindtap="switchTab">
|
|
<view wx:if="item.bulge" class="tab-bar-bulge"></view>
|
|
<image class="image" src="{{tabBarParam.selected === index ? item.selectedIconPath : item.iconPath}}"></image>
|
|
<view class="tab-bar-view" style="color: {{tabBarParam.selected === index ? tabBarParam.selectedColor : tabBarParam.color}}">{{item.text}}</view>
|
|
</view>
|
|
</view>
|
|
</view> |