fix: 🐛 修复搜索页面展开历史的bug

master
学习很差啦 2022-10-17 14:27:24 +08:00
parent 2abbee0a49
commit 6b3b61acb5
1 changed files with 4 additions and 3 deletions

View File

@ -35,7 +35,8 @@
@click="doSearch(keyword)">
<span>{{ keyword }} </span>
</div>
<div @click="showMore" v-if=" oldKeywordIndex > loadIndex" class="oldKeyItem"></div>
<div @click="showMore" v-if="oldKeywordIndex > loadIndex" class="oldKeyItem"></div>
</div>
</view>
@ -202,7 +203,7 @@ export default {
empty:false,
scrollTop: 0,
loadIndex: 10,
oldKeywordIndex: "",
oldKeywordIndex: 0,
selectedWay: {
brand: [],
categoryId: [],
@ -570,7 +571,7 @@ export default {
key: "OldKeys",
success: (res) => {
var OldKeys = JSON.parse(res.data);
this.oldKeywordIndex = res.data.length;
this.oldKeywordIndex = OldKeys.length;
for (let i = 0; i < index; i++) {
this.oldKeywordList.push(OldKeys[i]);
}