mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-11 11:56:44 +08:00
调试
This commit is contained in:
@@ -101,7 +101,7 @@
|
||||
</div>
|
||||
<!-- 修改热点标签区域 -->
|
||||
<div style="margin: 10px 0;">
|
||||
<div class="hot-tags-wrapper">
|
||||
<!-- <div class="hot-tags-wrapper">
|
||||
<div class="hot-tags-wrapper">
|
||||
<div
|
||||
class="option-item" style=" padding-top: 2px;"
|
||||
@@ -112,7 +112,7 @@
|
||||
<span :class="isAllHotTagsSelected ? 'nav-bottbor' : ''"></span>
|
||||
</div>
|
||||
|
||||
<!-- <div
|
||||
<!– <div
|
||||
class="option-item" style=" padding-top: 2px;"
|
||||
v-for="tag in hotTagsList"
|
||||
:key="tag.id"
|
||||
@@ -121,31 +121,52 @@
|
||||
>
|
||||
<span>{{tag.tagName}}</span>
|
||||
<span :class="tag.checked ? 'nav-bottbor' : ''"></span>
|
||||
</div>-->
|
||||
<!-- 第一行的热点标签 -->
|
||||
</div>–>
|
||||
<!– 第一行的热点标签 –>
|
||||
<div v-for="(tag, index) in firstRowTags" :key="tag.id"
|
||||
class="option-item" style="padding-top: 2px;"
|
||||
@click="handleTagClick(tag, hotTagsList, 1)"
|
||||
:class="{ 'option-active': tag.checked }">
|
||||
<span>{{ tag.tagName }}</span>
|
||||
<!-- <span :class="tag.checked ? 'nav-bottbor' : ''"></span>-->
|
||||
<!– <span :class="tag.checked ? 'nav-bottbor' : ''"></span>–>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 第二行热点标签 -->
|
||||
<!– 第二行热点标签 –>
|
||||
<div class="hot-tags-row" v-if="secondRowTags.length > 0">
|
||||
<!-- 第二行的热点标签 -->
|
||||
<!– 第二行的热点标签 –>
|
||||
<div v-for="(tag, index) in secondRowTags" :key="tag.id"
|
||||
class="option-item" style="padding-top: 2px;"
|
||||
@click="handleTagClick(tag, hotTagsList, 1)"
|
||||
:class="{ 'option-active': tag.checked }">
|
||||
<span>{{ tag.tagName }}</span>
|
||||
<!-- <span :class="tag.checked ? 'nav-bottbor' : ''"></span>-->
|
||||
<!– <span :class="tag.checked ? 'nav-bottbor' : ''"></span>–>
|
||||
</div>
|
||||
</div>
|
||||
</div>-->
|
||||
|
||||
<div style="flex:1;" id="searchBox">
|
||||
<div class="field">
|
||||
<div
|
||||
class="option-item" style=" padding-top: 2px;"
|
||||
:class="{ 'option-active': isAllHotTagsSelected }"
|
||||
@click="handleClearHotTags"
|
||||
>
|
||||
<span>全部</span>
|
||||
<span :class="isAllHotTagsSelected ? 'nav-bottbor' : ''"></span>
|
||||
</div>
|
||||
<div class="fieldbox">
|
||||
<div v-for="(tag, index) in firstRowTags" :key="tag.id"
|
||||
class="option-item" style="padding-top: 2px;"
|
||||
@click="handleTagClick(tag, hotTagsList, 1)"
|
||||
:class="{ 'option-active': tag.checked }">
|
||||
<span>{{ tag.tagName }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <div id="fixd-box" class="upload" style="margin-left: 26px;">
|
||||
<div v-if="identity == 2 || identity == 3 || identity == 5">
|
||||
<div class="portal-model-btn pointer" style="margin-bottom: 0px;height: 100px;line-height: 100px;"
|
||||
@@ -2798,6 +2819,25 @@ a.custom2 {
|
||||
|
||||
|
||||
|
||||
.fieldbox {
|
||||
|
||||
display: flex;
|
||||
white-space: nowrap;
|
||||
flex-wrap: wrap;
|
||||
|
||||
div {
|
||||
padding: 0 15px;
|
||||
display: inline-block;
|
||||
font-size: 14px;
|
||||
line-height: 25px;
|
||||
color: #3d3d3d;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.fieldactive {
|
||||
color: #387DF7;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user