This commit is contained in:
2023-03-04 16:29:55 +08:00
commit 397ba75479
1007 changed files with 109050 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import request from '@/utils/request'
// 查询首页信息
export function getGeneralSituation(data) {
return request({
url: '/index/getGeneralSituation',
method: 'post',
data: data
})
}
export function getOrderInfo(data) {
return request({
url: '/index/getOrderInfo',
method: 'post',
data: data
})
}