jiangchengfeiyi-xiaochengxu/unpackage/dist/dev/mp-weixin/common/global.js

56 lines
1.7 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"use strict";
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: "下次看好了之后再买哦"
}
];
const stateMap = /* @__PURE__ */ new Map();
stateList.forEach((item) => {
stateMap.set(item.state, item);
});
const weekDay = function(time) {
let datelist = ["周日", "周一", "周二", "周三", "周四", "周五", "周六"];
return datelist[new Date(time).getDay()];
};
exports.stateMap = stateMap;
exports.weekDay = weekDay;