12 lines
398 B
Plaintext
12 lines
398 B
Plaintext
import { Service } from '@/Service/Service';
|
|
/*****优惠券*****/
|
|
class vpDiscountService {
|
|
private static GetUserDiscountListPath : string = '/Discount/GetUserDiscountList';
|
|
/*****优惠券*****/
|
|
static GetUserDiscountList(type:number,page:number) {
|
|
var result = Service.Request(this.GetUserDiscountListPath, 'GET', {type,page});
|
|
return result;
|
|
}
|
|
|
|
}
|
|
export { Service, vpDiscountService }; |