Authored by biao

remove 1 minute cache

... ... @@ -229,8 +229,6 @@ const _getDetail = (uid, code) => {
method: 'app.SpaceOrders.detail',
uid: uid,
order_code: code
}, {
cache: 100
});
};
... ... @@ -249,8 +247,6 @@ const _getUserOrder = (uid, type, page) => {
type: type,
page: page,
limit: pageSize
}, {
cache: 100
}).then(result => {
let orderList = [];
let total = false;
... ... @@ -402,8 +398,6 @@ const getExpressInfo = (uid, code) => {
method: 'app.express.get',
uid: uid,
order_code: code
}, {
cache: true
});
};
... ...