Authored by htoooth

fix

... ... @@ -740,6 +740,7 @@ const _getOrderDetail = co(function * (uid, orderId) {
detail.orderInfo.offlineByExpress = true;
}
detail.offline = true;
detail.orderInfo.offlineStore = _.get(orderDetail, 'offline_store', '');
} else {
detail.orderInfo.normal = true;
... ...
... ... @@ -12,7 +12,7 @@
订单编号:
<em>{{orderNum}}</em>
</p>
<p class="cur-status clearfix">
<p class="cur-status clearfix {{#if offline}}hide{{/if}}">
当前状态:{{statusStr}}
{{#if operation.goPay}}
<a class="go-pay oo-btn" href="{{operation.goPay}}">立即付款</a>
... ...
... ... @@ -11,15 +11,15 @@ const isTest = process.env.NODE_ENV === 'test';
module.exports = {
app: 'web',
appVersion: '5.5.0', // 调用api的版本
appVersion: '5.6.0', // 调用api的版本
port: 6002,
siteUrl: 'http://www.yohobuy.com',
cookieDomain: '.yohobuy.com',
domains: {
// test3
// singleApi: 'http://api-test3.yohops.com:9999/',
// api: 'http://api-test3.yohops.com:9999/',
// service: 'http://service-test3.yohops.com:9999/',
singleApi: 'http://api-test3.yohops.com:9999/',
api: 'http://api-test3.yohops.com:9999/',
service: 'http://service-test3.yohops.com:9999/',
// prod
//singleApi: 'http://single.yoho.cn/',
... ... @@ -32,8 +32,8 @@ module.exports = {
// service: 'http://service.gray.yohops.com/',
// dev
api: 'http://dev-api.yohops.com:9999/',
service: 'http://dev-service.yohops.com:9999/',
// api: 'http://dev-api.yohops.com:9999/',
// service: 'http://dev-service.yohops.com:9999/',
imSocket: 'ws://socket.yohobuy.com:10240',
imCs: 'http://im.yohobuy.com/api',
... ...