Authored by lzhy

一件代发

  1 +import OrderConfig from './order';
  2 +
  3 +export { OrderConfig };
  1 +export default {
  2 + //订单状态
  3 + orderStatus: {
  4 + 0: '待审核',
  5 + 20: '已付订金',
  6 + 40: '待付尾款',
  7 + 100: '已审核',
  8 + 200: '备货中',
  9 + 300: '调拨中',
  10 + 400: '已发货',
  11 + 500: '运输中',
  12 + 600: '已交寄',
  13 + 700: '订单完成',
  14 + 900: '用户取消',
  15 + 901: '客服取消',
  16 + 902: '备货中取消',
  17 + 903: '配货中取消',
  18 + 904: '发货后取消',
  19 + 905: '运输中取消',
  20 + 906: '超时取消',
  21 + 907: '拒收',
  22 + },
  23 + //支付状态
  24 + paymentStatus: {
  25 + 0: '未支付',
  26 + 1: '已支付',
  27 + 2: '部分支付',
  28 + },
  29 +};