12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <view class='page' ref='saveChildRef0'>
- <view class='top'>
- <view class='top-area'>
- </view>
- <!--<view style='height: {{CustomBar-StatusBar}}px; width: 100%;margin-top: 75rpx; padding-left: 135rpx; line-height: {{CustomBar-StatusBar}}px;position: absolute;color: #fff;'>
- 会议室预约管理平台</view> -->
- </view>
- <view class='user'>
- <view class='user-msg'>
- <view>
- <view a:if='{{ !userInfo}}' class='head'>
- <van-icon
- name='manager'
- color='#c7cde8'
- size='130rpx'
- custom-class='default-head'
- ref='saveChildRef1'
- >
- </van-icon>
- </view>
- <image
- a:if='{{userInfo}}'
- class='head'
- src='{{userInfo.avatar}}'
- mode="aspectFill"
- onTap="preview"
- data-src="{{userInfo.avatar}}"
- >
- </image>
- <text class='please m-t'>
- {{userInfo?userInfo.appletUsername:'请先登录'}}
- </text>
- </view>
- </view>
- <view a:if='{{userInfo}}' class='fun1 border-radius-20'>
- <view
- a:for='{{itemList}}'
- class='mine-item'
- data-id='{{item.id}}'
- a:key='{{index}}'
- ref-numbers='{{itemList}}'
- onTap='antmoveAction'
- data-antmove-tap='goto'
- >
- <view>
- {{item.name}}
- </view>
- <view class='status'>
- <text class='arrow'>
- </text>
- </view>
- </view>
- </view>
- <view class="btn-area1 {{userInfo?'bgc':''}}">
- <btn onTap='antmoveAction' data-antmove-tap="{{userInfo?'loginOut':'goLogin'}}">
- {{userInfo?'退出登录':'登录'}}
- </btn>
- </view>
- </view>
- </view>
|