|
@@ -1,17 +1,17 @@
|
|
|
<template>
|
|
|
<div class="course-my" style="background-color: white;">
|
|
|
<div class="tc">
|
|
|
- <img v-if="user.headImg" :src="user.headImg" style="margin: 10px auto;width: 160px; border-radius: 20%;" >
|
|
|
+ <img v-if="user.headImg" :src="user.headImg" style="margin: 10px auto;width: 160px; border-radius: 10%;" >
|
|
|
</img>
|
|
|
- <img v-else-if="user.gender=='男'" style="margin: 10px auto;width: 160px; border-radius: 20%;"
|
|
|
+ <img v-else-if="user.gender=='男'" style="margin: 10px auto;width: 160px; border-radius: 10%;"
|
|
|
src="../../../assets/images/user-man.jpg">
|
|
|
</img>
|
|
|
- <img v-else style="margin: 10px auto;width: 160px; border-radius: 20%;"
|
|
|
+ <img v-else style="margin: 10px auto;width: 160px; border-radius: 10%;"
|
|
|
src="../../../assets/images/user-man.jpg" >
|
|
|
</img>
|
|
|
</div>
|
|
|
<div class="mt10 tc">
|
|
|
- <div class="pt20 fs18">
|
|
|
+ <div class="pt20 fs18" style="color: #000000;">
|
|
|
当前用户
|
|
|
<span :title="user.nickname" style="display:inline" >
|
|
|
{{user.nickname}}
|
|
@@ -20,10 +20,6 @@
|
|
|
</div>
|
|
|
|
|
|
<el-row class="login-entry" style="width: 100%;">
|
|
|
-
|
|
|
- <el-col :span="24">
|
|
|
-
|
|
|
- </el-col>
|
|
|
<!-- <el-col :span="12" class="p10">
|
|
|
<button class="btn-b-b fs15" @click="gotoPage('/center/home')">个人中心</button>
|
|
|
</el-col>
|
|
@@ -49,10 +45,10 @@
|
|
|
</el-col> -->
|
|
|
|
|
|
<el-col :span="12" class="p10">
|
|
|
- <button class="btn-b-b b" @click="gotoPage('/center/home')">个人中心</button>
|
|
|
+ <el-button type="primary" @click="gotoPage('/center/home')">个人中心</el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="12" class="p10">
|
|
|
- <button class="btn-b-b b" @click="logout()">退出登录</button>
|
|
|
+ <el-button type="primary" @click="logout()">退出登录</el-button>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
|