You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.5 KiB
51 lines
1.5 KiB
<!-- pages/myInfo/myInfo.wxml -->
|
|
<view class="bg"></view>
|
|
<view class='box'>
|
|
<view class='header-item-container' style="background-image: url('/images/card_bg.png')">
|
|
<view class="info-box">
|
|
<image class='avatar' src='../../images/avatar.png' />
|
|
<view class="info">
|
|
<view class='userName over-ellipsis'>
|
|
{{userInfo.name}}
|
|
</view>
|
|
<view class='contact'>
|
|
<image class='icon' src='../../images/phone.svg' />
|
|
<view class="text over-ellipsis">
|
|
{{userInfo.phone}}
|
|
</view>
|
|
</view>
|
|
<view class='contact'>
|
|
<image class='icon' src='../../images/email.svg' />
|
|
<view class="text over-ellipsis">
|
|
{{userInfo.email || '--'}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="post over-ellipsis">
|
|
{{userInfo.post || '--'}}
|
|
</view>
|
|
</view>
|
|
<view class="dept-box">
|
|
<view class='dept'>
|
|
{{userInfo.deptName}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class='body-container'>
|
|
<view class='body-item' bindtap="bindClick">
|
|
<view class='body-info'>
|
|
基本信息
|
|
</view>
|
|
<image class="right" src="/images/right.svg"></image>
|
|
</view>
|
|
<!-- <view class='body-item'>
|
|
<view class='body-info'>通知消息</view>
|
|
<image class="right" src="/images/right.svg"></image>
|
|
</view> -->
|
|
</view>
|
|
<view class='foot-container'>
|
|
<view class='foot-item' bindtap='logout'>
|
|
退出登录
|
|
</view>
|
|
</view>
|
|
</view>
|