Blame view

apps/home/models/channel-config.js 546 Bytes
htoooth authored
1
'use strict';
weiqingting authored
2
htoooth authored
3 4 5 6 7 8 9 10
module.exports.xchangeDay = 15;

module.exports.refundDay = 7;

module.exports.payType = {
    1: '在线支付',
    2: '货到付款',
    3: '刷卡支付'
weiqingting authored
11
};
htoooth authored
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32

module.exports.orderTagArr = {
    gift: {
        name: '赠品',
        classname: 'freebie-tag'
    },
    price_gift: {
        name: '加价购',
        classname: 'advance-buy-tag'
    },
    advance: {
        name: '预售',
        classname: 'presall-tag'
    },
    ticket: {
        name: '虚拟商品',
        classname: 'virtual-good-tag'
    }
};