You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
993 B
19 lines
993 B
<div class="my-lecturer">
|
|
<div v-if="followList.length" class="lecturer-list">
|
|
<a v-for="item in followList" :key="item.id" :href="$router.teacher_detail + '?id=' + item.id" class="item">
|
|
<button @click.prevent="follow(item)"><i class="iconfont iconguanbi"></i>取消关注</button>
|
|
<div class="avatar">
|
|
<img :src="item.lecturer_head" alt="">
|
|
</div>
|
|
<div class="name">{{ item.lecturer_name }}</div>
|
|
<div class="tags">
|
|
<div v-for="label in item.label" :key="label" class="tag">{{ label }}</div>
|
|
</div>
|
|
<div class="info">{{ item.explain }}</div>
|
|
</a>
|
|
</div>
|
|
<el-empty v-if="!followList.length && finished" description=" "></el-empty>
|
|
<el-pagination :page-size="limit" :total="total" :current-page.sync="page" layout="prev, pager, next" prev-text="上一页" next-text="下一页"
|
|
hide-on-single-page>
|
|
</el-pagination>
|
|
</div> |