|
@@ -82,7 +82,7 @@
|
|
|
</template>
|
|
|
<div @click="handleTitleClick(item)" class="title">
|
|
|
<span
|
|
|
- v-html="highlightMatch(getFirstThirtyChars(item.title))"></span>
|
|
|
+ v-html="highlightMatch((item.title))"></span>
|
|
|
</div>
|
|
|
</a-popover>
|
|
|
</template>
|
|
@@ -353,11 +353,12 @@ async function loadArticleList() {
|
|
|
await queryPageListByFilters(param).then(res => {
|
|
|
articleList.value = res.records;
|
|
|
scrollContainer.value.scrollTo(0, 1);
|
|
|
- if (res.records < 10) {
|
|
|
+ if (res.records.length < 10) {
|
|
|
loadingMoreType.value = false;
|
|
|
}
|
|
|
articleListSpinning.value = false;
|
|
|
});
|
|
|
+
|
|
|
}
|
|
|
|
|
|
// 文章卡片作者、标签
|