12345678910111213141516171819202122232425262728293031323334353637 |
- <view class='userinfo' wx:if="{{userInfo.userId}}">
- <view class='userinfo-avatar'>
- <image src="{{userInfo.headerImg}}" mode="widthFix" style="width:100%"></image>
- </view>
- <view class='userinfo-name'>
- <view> {{userInfo.nickname}}</view>
- </view>
- </view>
- <view class='userinfo ' wx:else>
- <view class='userinfo-avatar'>
- <image src="/assets/icon/1.jpg" mode="widthFix" style="width:100%"></image>
- </view>
- <view class='userinfo-name'>
- <i-button inline="true" size="small" type="success" shape="square" bindtap="goLogin" class="login-btn" >
- 微信登录
- </i-button>
- </view>
- </view>
- <view>
- <i-cell-group i-class="my-group-margin">
- <i-cell title="历史记录" is-link bindtap="gotoFileList" data-api="getViewArticalList">
- <i-icon type="mine_fill" slot="icon" size="20" />
- </i-cell>
- <i-cell title="退出登入" bind:click="logOut">
- <i-icon type="flashlight_fill" slot="icon" size="20" />
- </i-cell>
- </i-cell-group>
- </view>
- <view class="copyright">莅临&外出</view>
- <i-spin size="large" fix wx:if="{{ spinShow }}"></i-spin>
- <i-message id="message" />
|