wxapp/api/page.js

12 lines
179 B
JavaScript
Raw Permalink Normal View History

2024-08-03 11:57:17 +00:00
import request from '@/utils/request'
// api地址
const apiUri = {
home: 'clientApi/page/home'
}
// 页面数据
export function home() {
return request.get(apiUri.home)
}