//订单状态数组 export const stateList = [ { state: '待支付', img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FFybMDtHR-dengdaifukuan.png', msg: '等待买家付款', tips: '请于15分钟内付款,超时订单将自动关闭' }, { state: '待发货', img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FEOzVqolp-fahuo.png', msg: '等待卖家发货', tips: '耐心等待工艺品发货~' }, { state: '退款中', img: '', msg: '退款审核中', tips: '请君耐心等待退款结果' }, { state: '已退款', img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FlPnvgqCp-yituikuan.png', msg: '订单已经退款', tips: '希望下次能让君满意' }, { state: '待收货', img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FEOzVqolp-fahuo.png', msg: '商品已发货,注意查收', tips: '非遗工艺品马上到手啦,耐心点' }, { state: '交易成功', img: '', msg: '订单完成,感谢您的支持', tips: '感谢您的支持' }, { state: '交易关闭', img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FaHDhacaI-dengdaifukuan.png', msg: '您的订单已关闭', tips: '下次看好了之后再买哦' } ] export const stateMap = new Map() stateList.forEach((item)=>{ stateMap.set(item.state,item) }) //获取选中日期是星期几方法 export const weekDay = function(time) { let datelist = ['周日','周一','周二','周三','周四','周五','周六',] return datelist[new Date(time).getDay()]; }