更新代码

This commit is contained in:
duan
2025-01-06 18:28:10 +08:00
parent 4ccddee396
commit 0cdd737ca5
6 changed files with 393 additions and 342 deletions

13
api/init.js Normal file
View File

@@ -0,0 +1,13 @@
import http from '@/http/http.js'
export async function init() {
//热搜词
http.request({
url: 'common/type/249',
}).then(res => {
if (res.code == 0) {
uni.setStorageSync('moreSearch', res.data.value)
}
})
}