Authored by 郭成尧

cache-no

... ... @@ -258,7 +258,12 @@ class shoppingModel extends global.yoho.BaseModel {
coupon_code: params.coupon_code
};
return this.get({data: param});
return this.get({
data: param,
param: {
cache: false
}
});
}
/**
... ...
... ... @@ -15,6 +15,9 @@ class CouponNewModel extends global.yoho.BaseModel {
filter: params.filter || 0,
limit: 20,
page: params.page || 1
},
param: {
cache: false
}
});
}
... ...