mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-05 02:20:12 +08:00
18 lines
335 B
JavaScript
18 lines
335 B
JavaScript
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
|
|
})
|
|
}
|