样式优化

This commit is contained in:
binbin_pan 2024-12-30 18:48:10 +08:00
parent fa1daf92ea
commit f5f25b2ea6
7 changed files with 254 additions and 141 deletions

View File

@ -3,6 +3,7 @@
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
src: url('~@/static/uni.ttf') format('truetype'); src: url('~@/static/uni.ttf') format('truetype');
src: url('~@/static/fonts/SourceHanSansSC-VF.ttf') format('truetype');
} }
/* #ifdef H5 */ /* #ifdef H5 */

View File

@ -7,15 +7,10 @@
suffixIcon="search" suffixIcon="search"
v-model="keyword" v-model="keyword"
placeholder="请输入搜索关键词" placeholder="请输入搜索关键词"
@iconClick="toggleSearch" @blur="toggleSearch"
></uni-easyinput> ></uni-easyinput>
</view> </view>
<view class="opt-grids">
<view v-for="(part, index) in opts" :key="index" @click="jumpUrl(part.url)">
<image :src="part.src" mode="" style="width: 58px; height: 58px;"></image>
<span>{{ part.name }}</span>
</view>
</view>
<view class="swipe-area"> <view class="swipe-area">
<swiper class="swiper-box" autoplay interval="3000" indicator-dots="true"> <swiper class="swiper-box" autoplay interval="3000" indicator-dots="true">
<swiper-item v-for="(item, index) in imgList" :key="index"> <swiper-item v-for="(item, index) in imgList" :key="index">
@ -23,6 +18,13 @@
</swiper-item> </swiper-item>
</swiper> </swiper>
</view> </view>
<view class="opt-grids">
<view v-for="(part, index) in opts" :key="index" @click="jumpUrl(part.url)">
<image :src="part.src" mode="" style="width: 58px; height: 58px;"></image>
<span>{{ part.name }}</span>
</view>
</view>
<uni-notice-bar <uni-notice-bar
show-icon show-icon
scrollable scrollable
@ -245,14 +247,13 @@ export default {
<style lang="scss"> <style lang="scss">
.page { .page {
width: 100vw; width: 100vw;
height: 100vh;
background-color: #f8f8f8; background-color: #f8f8f8;
box-sizing: border-box; box-sizing: border-box;
padding: 0 20px; padding: 0 20px;
.search { .search {
width: 100%; width: 100%;
margin: 10px auto 0; margin: 3vh auto 0;
display: flex; display: flex;
align-items: center; align-items: center;
} }
@ -284,14 +285,14 @@ export default {
} }
.swipe-area { .swipe-area {
margin-top: 3vh;
width: 100%; width: 100%;
height: 20vh;
border-radius: 15rpx; border-radius: 15rpx;
overflow: hidden; overflow: hidden;
margin-bottom: 10rpx;
} }
.my-task { .my-task {
margin-bottom: 3vh;
width: 100%; width: 100%;
height: 40vh; height: 40vh;
background-color: #fff; background-color: #fff;

View File

@ -1,6 +1,7 @@
<template> <template>
<view class="page"> <view class="page">
<u-navbar title="学习项目" @leftClick="leftClick" placeholder /> <u-navbar title="学习项目" @leftClick="leftClick" placeholder />
<div class="wrapper">
<div class="tab-wrapper"> <div class="tab-wrapper">
<div v-for="(item, index) in statusList" :key="index" class="tab-item" @click="chooseStatus(item, index)"> <div v-for="(item, index) in statusList" :key="index" class="tab-item" @click="chooseStatus(item, index)">
<div :style="{ color: activeIndex === index ? '#409eff' : '#333' }"> <div :style="{ color: activeIndex === index ? '#409eff' : '#333' }">
@ -13,10 +14,27 @@
suffixIcon="search" suffixIcon="search"
v-model="totalStatus.keyword" v-model="totalStatus.keyword"
placeholder="请输入项目名称" placeholder="请输入项目名称"
@iconClick="toggleSearch" @blur="toggleSearch"
style="margin-bottom: 10px" style="margin-bottom: 10px"
></uni-easyinput> ></uni-easyinput>
<!-- 查询 -->
<div class="status-secs">
<div class="item" @click="openPicker(1)">
<span>学习类型</span>
<u-icon name="arrow-down-fill" color="#D8D8D8" size="9"></u-icon>
</div>
<div class="item" @click="openPicker(2)">
<span>逾期状态</span>
<u-icon name="arrow-down-fill" color="#D8D8D8" size="9"></u-icon>
</div>
<div class="item" @click="openPicker(3)">
<span>合格状态</span>
<u-icon name="arrow-down-fill" color="#D8D8D8" size="9"></u-icon>
</div>
</div>
</div>
<view class="project-cont"> <view class="project-cont">
<view v-for="(item, index) in projList" :key="item.id" class="single-proj" @click="toggleDetail(item.id)"> <view v-for="(item, index) in projList" :key="item.id" class="single-proj" @click="toggleDetail(item.id)">
<h4 class="img"> <h4 class="img">
@ -51,6 +69,16 @@
<image src="/static/images/zanwuneirong.png" mode="aspectFit" /> <image src="/static/images/zanwuneirong.png" mode="aspectFit" />
<view class="no-data-text">暂无内容</view> <view class="no-data-text">暂无内容</view>
</div> </div>
<!-- 选择器 -->
<u-picker
v-if="showPicker"
:show="showPicker"
:columns="[columns]"
keyName="label"
@cancel="showPicker = false"
@confirm="confirmPicker"
></u-picker>
</view> </view>
</template> </template>
@ -61,6 +89,8 @@ import config from '@/config'
export default { export default {
data() { data() {
return { return {
showPicker: false,
columns: [],
activeIndex: 0, activeIndex: 0,
statusList: [ statusList: [
// status -1: 1: 0: // status -1: 1: 0:
@ -77,26 +107,20 @@ export default {
qualStatus: '', qualStatus: '',
signupStatus: '' signupStatus: ''
}, },
// //
learnTypeRange: [ learnTypeRange: [
{ text: '学习类型', value: '' }, { label: '不学', value: 1 },
{ text: '不学', value: 1 }, { label: '要学', value: 2 }
{ text: '要学', value: 2 }
], ],
//
outDateStatusRange: [ outDateStatusRange: [
{ text: '逾期状态', value: '' }, { label: '临期', value: 1 },
{ text: '临期', value: 1 }, { label: '过期', value: 2 }
{ text: '过期', value: 2 }
], ],
//
qualStatusRange: [ qualStatusRange: [
{ text: '合格状态', value: '' }, { label: '合格', value: 1 },
{ text: '合格', value: 1 }, { label: '不及格', value: 2 }
{ text: '不及格', value: 2 }
],
signupStatusRange: [
{ text: '报名状态', value: '' },
{ text: '报了', value: 1 },
{ text: '没报', value: 2 }
], ],
// //
projList: [] projList: []
@ -106,6 +130,24 @@ export default {
this.getList() this.getList()
}, },
methods: { methods: {
openPicker(type) {
console.log('🚀 ~ openPicker ~ type:', type)
this.columns = []
if (type === 1) {
this.columns = this.learnTypeRange
} else if (type === 2) {
this.columns = this.outDateStatusRange
} else if (type === 3) {
this.columns = this.qualStatusRange
} else if (type === 4) {
this.columns = this.signupStatusRange
}
this.showPicker = true
},
confirmPicker(e) {
console.log('🚀 ~ confirmPicker ~ e:', e)
this.showPicker = false
},
async getList() { async getList() {
const params = { const params = {
userId: uni.getStorageSync('userId'), userId: uni.getStorageSync('userId'),
@ -205,6 +247,10 @@ export default {
</script> </script>
<style lang="scss"> <style lang="scss">
.wrapper {
padding: 0 10px;
background-color: #fff;
}
.tab-wrapper { .tab-wrapper {
display: flex; display: flex;
justify-content: space-around; justify-content: space-around;
@ -242,25 +288,21 @@ export default {
height: 100vh; height: 100vh;
background-color: #f8f8f8; background-color: #f8f8f8;
box-sizing: border-box; box-sizing: border-box;
padding: 0 10px;
.status-secs { .status-secs {
width: 100%; display: flex;
justify-content: space-between;
align-items: center;
font-size: 16px;
font-weight: 800;
margin-bottom: 10px;
padding-bottom: 10px;
.item {
display: flex; display: flex;
align-items: center; align-items: center;
margin-bottom: 1vh; span {
margin-right: 5px;
view {
box-sizing: border-box;
padding: 0 15rpx;
font-size: 18px;
color: #9ea2ac;
font-weight: bold;
} }
.active {
font-size: 28px;
color: #000;
} }
} }
@ -271,8 +313,7 @@ export default {
} }
.project-cont { .project-cont {
width: 100%; padding: 0 10px;
height: 10rpx;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
flex-wrap: wrap; flex-wrap: wrap;

View File

@ -2,23 +2,34 @@
<view class="wrapper" :style="{ fontSize: fontSize + 'px' }"> <view class="wrapper" :style="{ fontSize: fontSize + 'px' }">
<u-navbar leftIcon="" title="" :placeholder="true"> <u-navbar leftIcon="" title="" :placeholder="true">
<view class="u-nav-slot" slot="right"> <view class="u-nav-slot" slot="right">
<u-tag text="小" :type="fontSize == 19 ? 'primary' : 'info'" @click="changeFont(19)" style="margin-right: 8px" ></u-tag> <span style="font-size: 13px; color: #ccc; margin-right: 5px">字体大小</span>
<u-tag text="中" :type="fontSize == 21 ? 'primary' : 'info'" @click="changeFont(21)" style="margin-right: 8px"></u-tag> <u-tag
text="小"
:type="fontSize == 19 ? 'primary' : 'info'"
@click="changeFont(19)"
style="margin-right: 8px"
></u-tag>
<u-tag
text="中"
:type="fontSize == 21 ? 'primary' : 'info'"
@click="changeFont(21)"
style="margin-right: 8px"
></u-tag>
<u-tag text="大" :type="fontSize == 23 ? 'primary' : 'info'" @click="changeFont(23)"></u-tag> <u-tag text="大" :type="fontSize == 23 ? 'primary' : 'info'" @click="changeFont(23)"></u-tag>
</view> </view>
</u-navbar> </u-navbar>
<div class="top-time">已用时间 {{ usedTime }}</div> <div class="top-time">已用时间 {{ usedTime }}</div>
<div class="num-wrapper"> <div class="num-wrapper">
<div class="correct"> <div class="correct">
<u-icon name="/static/images/true.png" :size="fontSize" /> <u-icon name="/static/images/true.png" :size="fontSize + 2" />
<div class="num">{{ trueNum }}</div> <div class="num">{{ trueNum }}</div>
</div> </div>
<div class="error"> <div class="error">
<u-icon name="/static/images/error.png" :size="fontSize" /> <u-icon name="/static/images/error.png" :size="fontSize + 2" />
<div class="num">{{ falseNum }}</div> <div class="num">{{ falseNum }}</div>
</div> </div>
<div class="total" @click="openSelect"> <div class="total" @click="openSelect">
<u-icon name="/static/images/quanbufenlei.png" :size="fontSize" /> <u-icon name="/static/images/quanbufenlei.png" :size="fontSize + 2" />
<div class="num">{{ nowNum }}/{{ allNum }}</div> <div class="num">{{ nowNum }}/{{ allNum }}</div>
</div> </div>
</div> </div>
@ -206,12 +217,31 @@
</u-modal> </u-modal>
<!-- 题目选择弹框 --> <!-- 题目选择弹框 -->
<u-modal :show="showModalSelect" title="题目选择" @confirm="showModalSelect = false"> <u-popup
<view class="slot-content"> :show="showModalSelect"
@close="showModalSelect = false"
mode="center"
round="10"
customStyle="width: 90%; height: 50%"
>
<div class="num-wrapper">
<div class="correct">
<u-icon name="/static/images/true.png" :size="fontSize + 2" />
<div class="num">{{ trueNum }}</div>
</div>
<div class="error">
<u-icon name="/static/images/error.png" :size="fontSize + 2" />
<div class="num">{{ falseNum }}</div>
</div>
<div class="total">
<u-icon name="/static/images/quanbufenlei.png" :size="fontSize + 2" />
<div class="num">{{ nowNum }}/{{ allNum }}</div>
</div>
</div>
<div class="topic-content"> <div class="topic-content">
<div class="wrap" v-for="(item, index) in questionListSelect" :key="index">
<div <div
v-for="(item, index) in questionListSelect"
:key="index"
class="topic-wrapper" class="topic-wrapper"
:class="{ correct: item.isTrue == 1, error: item.isTrue == 0 }" :class="{ correct: item.isTrue == 1, error: item.isTrue == 0 }"
@click="handleJump('jump', item.index)" @click="handleJump('jump', item.index)"
@ -220,8 +250,8 @@
<div class="topic">{{ item.index }}</div> <div class="topic">{{ item.index }}</div>
</div> </div>
</div> </div>
</view> </div>
</u-modal> </u-popup>
<u-loading-page :loading="isLoading"></u-loading-page> <u-loading-page :loading="isLoading"></u-loading-page>
</view> </view>
@ -245,6 +275,7 @@ export default {
data() { data() {
return { return {
isLoading: false, isLoading: false,
isAddLoading: false,
practiceId: '', // id practiceId: '', // id
recordId: '', // id recordId: '', // id
isNew: 1, // isNew: 1, //
@ -279,7 +310,8 @@ export default {
startY: 0, // Y startY: 0, // Y
endX: 0, // X endX: 0, // X
endY: 0, // Y endY: 0, // Y
fontSize: 19 fontSize: 19,
isError: false //
} }
}, },
onLoad(opt) { onLoad(opt) {
@ -410,6 +442,8 @@ export default {
// //
handleJump(item, index) { handleJump(item, index) {
console.log('🚀 ~ handleJump ~ item:', item, this.recordId) console.log('🚀 ~ handleJump ~ item:', item, this.recordId)
if (this.isAddLoading) return
this.isAddLoading = true
if (item === 'prev') { if (item === 'prev') {
this.nowNum-- this.nowNum--
if (this.nowNum < 1) { if (this.nowNum < 1) {
@ -451,6 +485,7 @@ export default {
}, },
success: res => { success: res => {
console.log('🚀 ~ handleJump ~ res:', res) console.log('🚀 ~ handleJump ~ res:', res)
this.isAddLoading = false
res = res.data res = res.data
this.questionList.push(res.data) this.questionList.push(res.data)
if (res.data.selectAnswer) { if (res.data.selectAnswer) {
@ -489,6 +524,7 @@ export default {
}, },
fail: err => { fail: err => {
console.log(err) console.log(err)
this.isAddLoading = false
} }
}) })
}, },
@ -834,7 +870,8 @@ export default {
}, },
// //
openSelect() { openSelect() {
this.isLoading = true if (this.isAddLoading) return
this.isAddLoading = true
// const res = await this.getPracticeQuestionList() // const res = await this.getPracticeQuestionList()
// console.log('🚀 ~ openSelect ~ res:', res) // console.log('🚀 ~ openSelect ~ res:', res)
// this.questionListSelect = res.data // this.questionListSelect = res.data
@ -854,13 +891,14 @@ export default {
}, },
success: res => { success: res => {
this.showModalSelect = true this.showModalSelect = true
this.isAddLoading = false
console.log('🚀 ~ getPracticeQuestionList ~ res:', res) console.log('🚀 ~ getPracticeQuestionList ~ res:', res)
res = res.data res = res.data
this.questionListSelect = res.data this.questionListSelect = res.data
}, },
fail: err => { fail: err => {
this.isLoading = false
console.log(err) console.log(err)
this.isAddLoading = false
} }
}) })
}, },
@ -952,31 +990,36 @@ export default {
} }
} }
} }
}
.topic-content { .topic-content {
height: 300px;
display: flex; display: flex;
justify-content: flex-start; /* justify-content: space-between; */
align-items: center; align-items: flex-start;
flex-wrap: wrap; flex-wrap: wrap;
overflow: auto; overflow: auto;
.topic-wrapper { .wrap {
width: 30px; width: 20%;
height: 30px;
border: 1px solid #409eff;
border-radius: 5px;
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
margin: 10px; .topic-wrapper {
width: 40px;
height: 40px;
border: 1px solid #ccc;
border-radius: 3px;
display: flex;
justify-content: center;
align-items: center;
margin: 8px;
.topic { .topic {
color: #409eff; color: #ccc;
} }
// //
&.correct { &.correct {
background: #67d279; background: #67d279;
color: #fff; color: #fff;
border: none;
.topic { .topic {
color: #fff; color: #fff;
} }
@ -985,6 +1028,7 @@ export default {
&.error { &.error {
background: #f0514c; background: #f0514c;
color: #fff; color: #fff;
border: none;
.topic { .topic {
color: #fff; color: #fff;
} }
@ -995,10 +1039,11 @@ export default {
.bottom-btn { .bottom-btn {
position: fixed; position: fixed;
bottom: 30px; bottom: 16px;
left: 0; left: 0;
display: flex; display: flex;
justify-content: space-around; justify-content: space-around;
align-items: center;
width: 100%; width: 100%;
.btn { .btn {
width: 100px; width: 100px;
@ -1019,7 +1064,7 @@ export default {
.question-wrapper { .question-wrapper {
height: 64vh; height: 64vh;
overflow: auto; overflow: auto;
padding: 30px; padding: 20px;
color: #08428d; color: #08428d;
.title { .title {
@ -1033,8 +1078,9 @@ export default {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
background: #ffffff; background: #f8f8f8;
border-radius: 8px; border-radius: 8px;
border: 1px solid #ccc;
overflow: auto; overflow: auto;
.label-wrapper { .label-wrapper {
overflow: auto; overflow: auto;
@ -1064,13 +1110,12 @@ export default {
.top-time { .top-time {
text-align: center; text-align: center;
color: #333; color: #333;
padding-top: 60px;
} }
.num-wrapper { .num-wrapper {
display: flex; display: flex;
justify-content: center; justify-content: space-around;
margin-top: 20px; margin: 15px 6%;
.correct, .correct,
.error, .error,

View File

@ -10,43 +10,69 @@
<div class="left"> <div class="left">
<div class="item"> <div class="item">
<u-icon name="/static/images/accuracy.png" size="50" /> <u-icon name="/static/images/accuracy.png" size="50" />
<div class="text">
<div>正确率</div> <div>正确率</div>
<div>{{ correctRate }}</div> <div>{{ correctRate || '0%' }}</div>
</div>
</div> </div>
<div class="item"> <div class="item">
<u-icon name="/static/images/accumulative-answer.png" size="50" /> <u-icon name="/static/images/accumulative-answer.png" size="50" />
<div class="text">
<div>累计作答</div> <div>累计作答</div>
<div>{{ totalAnswer }}</div> <div>{{ totalAnswer || 0 }}</div>
</div>
</div> </div>
<div class="item"> <div class="item">
<u-icon name="/static/images/accumulative-total.png" size="50" /> <u-icon name="/static/images/accumulative-total.png" size="50" />
<div class="text">
<div>累计答对</div> <div>累计答对</div>
<div>{{ totalCorrect }}</div> <div>{{ totalCorrect || 0 }}</div>
</div>
</div> </div>
</div> </div>
<div class="right"> <div class="right">
<div class="right-top"> <div class="right-top">
<div class="right-text">顺序练习</div> <div class="right-text">顺序练习</div>
<div class="btn-wrap">
<div class="btn" v-if="!isNew"> <div class="btn" v-if="!isNew">
<u-button type="primary" plain shape="circle" text="继续上次练习" @click="handleExercises(1)"></u-button> <u-button
type="primary"
plain
shape="circle"
text="继续上次练习"
style="background: #f6f6f6"
@click="handleExercises(1)"
></u-button>
</div> </div>
<div class="btn"> <div class="btn">
<u-button type="primary" plain shape="circle" text="开始新的练习" @click="handleExercises(2)"></u-button> <u-button
type="primary"
plain
shape="circle"
text="开始新的练习"
style="background: #f6f6f6"
@click="handleExercises(2)"
></u-button>
</div>
</div> </div>
</div> </div>
<div class="right-bottom"> <div class="right-bottom">
<div class="right-text">随机练习</div> <div class="right-text">随机练习</div>
<div class="btn-wrap">
<div class="btn" v-if="!isNew"> <div class="btn" v-if="!isNew">
<u-button type="primary" plain shape="circle" text="继续上次练习" @click="handleExercises(3)"></u-button> <u-button
type="primary"
plain
shape="circle"
text="继续上次练习"
style="background: #f6f6f6"
@click="handleExercises(3)"
></u-button>
</div> </div>
<div class="btn"> <div class="btn">
<u-button type="primary" plain shape="circle" text="开始新的练习" @click="handleExercises(4)"></u-button> <u-button
type="primary"
plain
shape="circle"
text="开始新的练习"
style="background: #f6f6f6"
@click="handleExercises(4)"
></u-button>
</div>
</div> </div>
</div> </div>
</div> </div>
@ -196,8 +222,7 @@ export default {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
.left { .left {
width: 52%; width: 33%;
/* height: 209px; */
background: #5185ed; background: #5185ed;
border-radius: 8px; border-radius: 8px;
display: flex; display: flex;
@ -207,62 +232,62 @@ export default {
.item { .item {
padding: 0 15px; padding: 0 15px;
display: flex; display: flex;
flex-direction: column;
align-items: center; align-items: center;
justify-content: space-around; justify-content: space-around;
&:first-child {
margin-left: -8px;
}
.text {
color: #fff; color: #fff;
font-size: 16px; font-size: 16px;
font-weight: 500; font-weight: 500;
margin-left: 10px;
display: flex;
flex-direction: column;
align-items: center;
}
} }
} }
.right { .right {
width: 43%; width: 63%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: space-between; justify-content: space-between;
.btn { .btn {
width: 80%; width: 89%;
margin: 10px auto; margin: 10px auto;
} }
.right-top { .right-top {
height: 158px; height: 158px;
background: #e7ac67; background: #e7ac67;
/* background: url('../../../static/images/order-exercises.png') no-repeat; */ /* background: url('/static/images/order-exercises.png') no-repeat; */
background-size: 100% 98px; background-size: 100% 98px;
border-radius: 8px; border-radius: 8px;
position: relative; /* position: relative; */
margin-bottom: 10px; margin-bottom: 10px;
/* display: flex;
flex-direction: column;
justify-content: space-around; */
// top-icon - // top-icon -
.top-icon { /* .top-icon {
position: absolute; position: absolute;
right: 0; right: 0;
bottom: 0; bottom: 0;
} } */
} }
.right-bottom { .right-bottom {
height: 158px; height: 158px;
background: #73c2f7; background: #73c2f7;
border-radius: 8px 8px 8px 8px; border-radius: 8px 8px 8px 8px;
position: relative; /* position: relative; */
// bottom-icon - // bottom-icon -
.bottom-icon { /* .bottom-icon {
position: absolute; position: absolute;
left: 0; left: 0;
bottom: 0; bottom: 0;
} */
} }
.btn-wrap {
height: 95px;
display: flex;
flex-direction: column;
justify-content: center;
} }
.right-text { .right-text {

View File

@ -4,9 +4,9 @@
<view class="user-avatar"> <view class="user-avatar">
<image src="/static/images/user.png"></image> <image src="/static/images/user.png"></image>
</view> </view>
<view class="user-info" style="height: 120px;"> <view class="user-info" style="height: 120px">
<span style="font-size: 24px">{{ userName }}</span> <span style="font-size: 24px">{{ userName }}</span>
<span style="font-size: 12px; color: #8a8a8b; overflow: auto;">{{ className }}</span> <span style="font-size: 12px; color: #8a8a8b; overflow: auto">{{ className }}</span>
</view> </view>
<view class="edit-btn"> <view class="edit-btn">
<view @click="handleEdit">修改资料</view> <view @click="handleEdit">修改资料</view>
@ -60,7 +60,7 @@ export default {
secList: [ secList: [
// { id: 1, title: '', src: '/static/eduImg/changeGate.png', path: 'changeGate' }, // { id: 1, title: '', src: '/static/eduImg/changeGate.png', path: 'changeGate' },
// { id: 2, title: '', src: '/static/eduImg/faceScan.png', path: 'faceScan' }, // { id: 2, title: '', src: '/static/eduImg/faceScan.png', path: 'faceScan' },
{ id: 3, title: '我的消息', src: '/static/eduImg/myMsg.png', path: 'myMsg' }, { id: 3, title: '我的消息', src: '/static/eduImg/myMsg.png', path: 'myMsg' }
// { id: 4, title: '', src: '/static/eduImg/settings.png', path: 'settings' } // { id: 4, title: '', src: '/static/eduImg/settings.png', path: 'settings' }
], ],
token: uni.getStorageSync('access_token') token: uni.getStorageSync('access_token')
@ -80,7 +80,7 @@ export default {
}, },
// -- // --
getLearnStats() { getLearnStats() {
console.log('🚀 ~ getLearnStats ~ this.token:',uni.getStorageSync('access_token')) console.log('🚀 ~ getLearnStats ~ this.token:', uni.getStorageSync('access_token'))
this.$verificationToken() this.$verificationToken()
uni.request({ uni.request({
url: config.baseUrl + '/exam-student/personalCenter/getStudyAndCer', url: config.baseUrl + '/exam-student/personalCenter/getStudyAndCer',
@ -207,7 +207,7 @@ export default {
background-color: #fff; background-color: #fff;
border-radius: 15rpx; border-radius: 15rpx;
box-sizing: border-box; box-sizing: border-box;
padding: 4vh 3vw; padding: 10px;
color: #727272; color: #727272;
.single-sec { .single-sec {
@ -217,7 +217,7 @@ export default {
font-size: 14px; font-size: 14px;
display: flex; display: flex;
align-items: center; align-items: center;
border-bottom: 1px solid #f6f6f6; /* border-bottom: 1px solid #f6f6f6; */
.lef-icon { .lef-icon {
width: 5%; width: 5%;

Binary file not shown.