Authored by htoooth

add fix

... ... @@ -31,6 +31,45 @@ const TABS = [
{type: 7, name: '已取消订单'}
];
const ORDER_OP_MAP = [
{
type: 'closeOrder',
name: '取消订单'
},
{
type: 'buyNow',
name: '立即付款'
},
{
type: 'getExpress',
name: '查看物流'
},
{
type: 'confirm',
name: '确认订单'
},
{
type: 'delOrder',
name: '删除订单'
},
{
type: 'lookQrcode',
name: '查看二维码'
},
{
type: 'afterService',
name: '申请退货'
},
{
type: 'shareOrder',
name: '晒单评价'
},
{
type: 'readd',
name: '再次购买'
}
];
const _getTabs = (type) => {
type = type || 1;
return TABS.map((tab) => {
... ...
... ... @@ -103,7 +103,7 @@
</li>
{{/each}}
</ul>
<span class="close-logistics iconfont">&#xe602;</span>
<span class="close-logistics iconfont">&#xe60d;</span>
<div class="right-triangle bottom"></div>
<div class="right-triangle top"></div>
</div>
... ...
... ... @@ -17,14 +17,14 @@ module.exports = {
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/',
api: 'http://api.yoho.cn/',
service: 'http://service.yoho.cn/',
//singleApi: 'http://single.yoho.cn/',
//api: 'http://api.yoho.cn/',
//service: 'http://service.yoho.cn/',
// gray
//singleApi: 'http://single.gray.yohops.com/',
... ...