12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <wxs module="filter" src="../../../wxs/exam-fun.wxs"></wxs>
- <view class='headImg'>
- <button wx:if="{{!userInfo.token}}" type="primary" bindtap="gotoIdentify" class="tc">
- 绑定账号
- </button>
- <view class="headImg-avatar" wx:else>
- <image src="{{userInfo.headImg}}" mode="aspectFill"></image>
- </view>
- </view>
- <view>
- <i-cell-group i-class="my-group-margin">
- <i-cell title="高频题库" is-link url="/pages/train/limit/index">
- <i-icon type="like" slot="icon" size="20" />
- </i-cell>
- <i-cell title="{{filter.phoneFormat(userInfo.phone)||'---'}}" >
- <i-icon type="mobilephone" slot="icon" size="20" />
- </i-cell>
- <i-cell title="{{userInfo.nickname ||'---'}}" >
- <i-icon type="mine" slot="icon" size="20" />
- </i-cell>
- <i-cell title="{{filter.cardIdFormat(userInfo.cardId) ||'---'}}" >
- <i-icon type="businesscard" slot="icon" size="20" />
- </i-cell>
-
- </i-cell-group>
- </view>
- <!--
- <view>
- <i-cell-group i-class="my-group-margin">
- <i-cell title="设置" >
- <i-icon type="setup_fill" slot="icon" size="20" />
- </i-cell>
- <i-cell title="反馈" >
- <i-icon type="praise_fill" slot="icon" size="20" />
- </i-cell>
- <i-cell title="关于" >
- <i-icon type="prompt_fill" slot="icon" size="20" />
- </i-cell>
- </i-cell-group>
- </view> -->
- <view>
- <i-cell-group i-class="my-group-margin">
- <i-cell title="退出登入" bind:click="logOut">
- <i-icon type="flashlight" 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" />
|