mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-12 04:16:45 +08:00
提交
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<ul v-if="list.length > 0">
|
||||
<li class="note-list-index" v-for="item in list" :key="item.id">
|
||||
<p style="margin-bottom:18px;">
|
||||
<span style="font-size: 16px;font-weight: 600;color: #333;">{{item.courseName}}</span> <span class="qa-bq">#笔记#</span>
|
||||
<span style="font-size: 16px;font-weight: 600;color: #333;">{{item.courseName || item.title}}</span> <span class="qa-bq">#笔记#</span>
|
||||
|
||||
<span class="follow-hide" style="float:right">
|
||||
<el-button @click.stop="delCollectItem(item)" type="text" icon="el-icon-star-on" style="color:#8590A6">取消收藏</el-button>
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
<el-option label="已解决" :value="3"></el-option>
|
||||
</el-select>
|
||||
</el-col> -->
|
||||
<el-col :span="2"><span class="uc-center-page">我的收藏</span></el-col>
|
||||
<el-col :span="6"><el-input placeholder="标题查询" clearable v-model="keyword" style="margin-right: 20px"></el-input></el-col>
|
||||
<el-col :span="6">
|
||||
<el-button type="primary" icon="el-icon-search" @click="queryData" style="padding: 10px 15px;">搜索</el-button>
|
||||
@@ -37,6 +38,7 @@
|
||||
<div v-for="(item, index) in dataList.list">
|
||||
<course-items v-if="item.type==1" :items="[item]" @confirm="confirm"></course-items>
|
||||
<case-items v-if="item.type==3" @confirm="confirm" :items="[item]"></case-items>
|
||||
<note-list v-if="item.type==6" @confirm="confirm" :list="[item]"></note-list>
|
||||
<article-items v-if="item.type==2" @confirm="confirm" :items="[item]"></article-items>
|
||||
<qa-items v-if="item.type==4" :items="[item]" @confirm="confirm" :collect="true" :share="false" :remove="false" :edit="false"></qa-items>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user