...
|
...
|
@@ -9,7 +9,7 @@ export default class fastExpressService { |
|
|
if(host){
|
|
|
baseURL = host;
|
|
|
}
|
|
|
this.api = new Request("http://192.168.103.59:8080/gateway/");
|
|
|
this.api = new Request(baseURL);
|
|
|
}
|
|
|
|
|
|
async getFastExpressInfo(){
|
...
|
...
|
@@ -27,12 +27,12 @@ export default class fastExpressService { |
|
|
});
|
|
|
}
|
|
|
|
|
|
async getFastExpressProduct(userLevel, page){
|
|
|
async getFastExpressProduct(channel, page){
|
|
|
return await this.api.get({
|
|
|
url: '',
|
|
|
body: {
|
|
|
method: 'app.product.vip',
|
|
|
user_vip_level: userLevel,
|
|
|
method: 'app.firstpage.recproduct',
|
|
|
yh_channel: channel,
|
|
|
page,
|
|
|
}
|
|
|
})
|
...
|
...
|
|