Files
new_app/api/init.js
2025-01-06 18:28:10 +08:00

13 lines
263 B
JavaScript

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)
}
})
}