wip:
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-05-17 15:34:07 +08:00
parent eb4dfc0887
commit 1b1b724110
6 changed files with 86 additions and 9 deletions

View File

@@ -43,7 +43,7 @@
<script setup lang="ts">
import Taro from '@tarojs/taro';
import {ref} from 'vue';
import {getHomeList} from '@/api/home';
import {getHomeList, getStoreList} from '@/api/home';
import MerList from '@/components/MerList.vue';
import {showTips} from '@/utils';
@@ -74,10 +74,13 @@ const clickSearch = () => {
title: '请输入商家名称再搜索',
icon: 'none',
});
Taro.navigateTo({
url: `/pages/search/index?name=${searchVal.value}`,
});
searchVal.value = '';
};
Taro.useLoad(() => {
Taro.useLoad(async () => {
getNavLists();
getUserLocal();
});