This commit is contained in:
zhaofang
2022-10-19 20:04:36 +08:00
parent af4281f978
commit 4f32515d58
3 changed files with 12 additions and 3 deletions

View File

@@ -16,7 +16,7 @@
<!-- <img style="width:254px;height:144px" src="/images/list-img.png" alt=""> -->
<div class="data-cen">
<h6 class="course-tit portal-title-tow">{{item.info.name || item.contentInfo}} <span class="score-info">{{item.info.score}}</span> </h6>
<h6 class="course-tit portal-title-tow">{{item.info.name || item.contentInfo}} <span class="score-info">{{toScore(item.info.score)}}</span> </h6>
<p class="title-info">{{item.info.summary}}</p>
<div class="pro-line"> <div>当前进度</div> <div style="width:200px"><el-progress :percentage="50"></el-progress></div></div>
<p class="portal-time">最新一次学习时间2022-5-28 22:30:28</p>
@@ -41,10 +41,12 @@
</template>
<script>
import { toScore} from '@/utils/tools.js';
import courseImage from "@/components/Course/courseImage.vue";
export default{
data(){
return{
toScore,
courseList:[]
}
},