11 lines
394 B
Plaintext
11 lines
394 B
Plaintext
import { Service } from '@/Service/Service';
|
|
/*****用户订单*****/
|
|
class vpOrderService {
|
|
private static GetUserOrderListPath : string = '/Order/GetUserOrderList';
|
|
/*****获取用户订单列表*****/
|
|
static GetUserOrderList(time:string,page:number) {
|
|
var result = Service.Request(this.GetUserOrderListPath, 'GET', {time,page});
|
|
return result;
|
|
}
|
|
}
|
|
export { Service, vpOrderService }; |