deploy: auto commit repo-root changes 2026-06-24 16:53:33

This commit is contained in:
hajimi
2026-06-24 16:53:33 +08:00
parent 0d985506ba
commit a281b5fa8e
5 changed files with 18 additions and 14 deletions
+1 -1
View File
@@ -107,7 +107,7 @@ const calcFeedHeight = () => {
})
}
const searchPlaceholder = ref('搜索博头条')
const searchPlaceholder = ref('搜索博头条')
const RECOMMEND_CHANNEL = {
id: '__recommend__',
+3 -3
View File
@@ -54,9 +54,9 @@
<view v-for="(item, index) in currentHotList" :key="index" class="hot-search__item"
@tap="handleSearch(item.name)">
<text class="hot-search__rank" :class="{ 'hot-search__rank--top': index < 3 }">{{ index + 1
}}</text>
}}</text>
<text class="hot-search__name" :class="{ 'hot-search__name--top': index < 3 }">{{ item.name
}}</text>
}}</text>
<view v-if="item.tag" class="hot-search__tag"
:class="'hot-search__tag--' + (item.tagType || 'hot')">
<text>{{ item.tag }}</text>
@@ -98,7 +98,7 @@ import { getArticleList } from '@/api/news'
const keyword = ref('')
const autoFocus = ref(true)
const isSearching = ref(false)
const searchPlaceholder = ref('搜索博头条')
const searchPlaceholder = ref('搜索博头条')
const resultList = ref<any[]>([])
const paging = shallowRef()
const suggestList = ref<string[]>([])