You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
374 B
20 lines
374 B
import request from '@/utils/request'
|
|
|
|
// api地址
|
|
const api = {
|
|
list: 'goods/presaleList',
|
|
canlpresale: 'goods/canlpresale'
|
|
|
|
}
|
|
|
|
/**
|
|
* 获取支付订单的信息
|
|
* @param {Number} orderId
|
|
* @param {Object} param
|
|
*/
|
|
export function list(param) {
|
|
return request.get(api.list, param)
|
|
}
|
|
export function canlpresale(param) {
|
|
return request.get(api.canlpresale, param)
|
|
} |