You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/**
|
|
* 全局常量,请避免使用魔法数字
|
|
*/
|
|
|
|
// 用户凭证名
|
|
const TOKEN_KEY = "msbPcToken";
|
|
|
|
// 订单状态
|
|
const ORDER_STATUS = {
|
|
WAIT_PAY: 1, // 待付款
|
|
WAIT_SEND: 3, //待发货
|
|
WAIT_RECEIVE: 4, // 待收货
|
|
};
|
|
|
|
export { TOKEN_KEY, ORDER_STATUS };
|