mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-11 03:46:44 +08:00
调试
This commit is contained in:
@@ -72,6 +72,18 @@
|
||||
<a>外部精选</a>
|
||||
<span :class="ctypeList[2].checked ? 'nav-bottbor' : ''"></span>
|
||||
</div>
|
||||
<div style="display: flex;justify-content: space-between; align-items: center;">
|
||||
<span style="margin-right: 10px;" class="option-item">请选择年份 </span>
|
||||
<el-select v-model="yearChosen" multiple>
|
||||
<el-option
|
||||
v-for="year in years"
|
||||
v-if="year"
|
||||
:key="year"
|
||||
:label="year"
|
||||
:value="year">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="margin-top:10px;flex: 1;">
|
||||
@@ -102,6 +114,7 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
<div style="display: flex;justify-content: space-between; align-items: center;">
|
||||
<span style="margin-right: 10px;" class="option-item">请选择年份 </span>
|
||||
<el-select v-model="yearChosen" multiple>
|
||||
@@ -114,7 +127,7 @@
|
||||
</el-option>
|
||||
</el-select>
|
||||
</div>
|
||||
|
||||
-->
|
||||
|
||||
</div>
|
||||
<!-- 清除 -->
|
||||
@@ -594,6 +607,7 @@ export default {
|
||||
this.searchData();
|
||||
},
|
||||
handleTagClick(item, list,type) {
|
||||
console.info('切换标签 item = ' + item)
|
||||
item.checked = !item.checked;
|
||||
|
||||
// 更新course.tags
|
||||
|
||||
Reference in New Issue
Block a user