|
@@ -1,6 +1,66 @@
|
|
<template>
|
|
<template>
|
|
- <view>
|
|
|
|
- 我的
|
|
|
|
|
|
+ <view class="mobile-my-page">
|
|
|
|
+ <view class="user-info-box">
|
|
|
|
+ <view class="user-img-box">
|
|
|
|
+ <img class="head-img" :src="myInfoData.userImg" v-if="myInfoData.userImg">
|
|
|
|
+ <icon class="phone-default-userImg" v-else></icon>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="user-content-box">
|
|
|
|
+ <view class="user-name">{{myInfoData.userName}}</view>
|
|
|
|
+ <view class="user-info">
|
|
|
|
+ <view>{{myInfoData.realName}}</view><text v-if="myInfoData.realName && myInfoData.orgName"></text>
|
|
|
|
+ <view>{{myInfoData.orgName}}</view><text v-if="myInfoData.orgName && myInfoData.positionName"></text>
|
|
|
|
+ <view>{{myInfoData.positionName}}</view>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+
|
|
|
|
+ <view class="my-list-box">
|
|
|
|
+ <view class="list-row" @click="goToPage('xuefen')">
|
|
|
|
+ <icon class="list-icon xuefen-icon"></icon>
|
|
|
|
+ <text>学分</text>
|
|
|
|
+ <text class="row-content">{{myInfoData.credit}}分</text>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="list-row" @click="goToPage('xiaoxi')">
|
|
|
|
+ <icon class="list-icon xiaoxi-icon"></icon>
|
|
|
|
+ <text>消息</text>
|
|
|
|
+ <text class="row-content">{{myInfoData.countNotice}}条</text>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="list-row" @click="goToPage('zhengshu')">
|
|
|
|
+ <icon class="list-icon zhengshu-icon"></icon>
|
|
|
|
+ <text>证书</text>
|
|
|
|
+ <text class="row-content">{{myInfoData.countCert}}个</text>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="my-list-box">
|
|
|
|
+ <view class="list-row" @click="goToPage('cuoti')">
|
|
|
|
+ <icon class="list-icon cuoti-icon"></icon>
|
|
|
|
+ <text>错题</text>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="list-row" @click="goToPage('baoming')">
|
|
|
|
+ <icon class="list-icon baoming-icon"></icon>
|
|
|
|
+ <text>报名</text>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="list-row" @click="goToPage('sxtcs')">
|
|
|
|
+ <icon class="list-icon sxtcs-icon"></icon>
|
|
|
|
+ <text>摄像头测试</text>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="list-row" @click="goToPage('sxtsm')">
|
|
|
|
+ <icon class="list-icon sxtsm-icon"></icon>
|
|
|
|
+ <text>摄像头说明</text>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="list-row" @click="goToPage('shezhi')">
|
|
|
|
+ <icon class="list-icon shezhi-icon"></icon>
|
|
|
|
+ <text>设置</text>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+
|
|
|
|
+ <view>
|
|
|
|
+ <cameraCommon ref="cameraCommonRef"></cameraCommon>
|
|
|
|
+ </view>
|
|
|
|
+ <view>
|
|
|
|
+ <shexiangtoushuoming ref="shexiangtoushuomingRef" :content="messageContent" title="注意" okBtn="知道了"></shexiangtoushuoming>
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</template>
|
|
|
|
|