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.
shop-app/common/dicts/order.js

21 lines
451 B

/*
* @Author: ch
* @Date: 2022-03-29 16:47:32
* @LastEditors: ch
* @LastEditTime: 2022-03-29 17:14:26
* @Description: file content
*/
import Enum from "@/common/plugins/enum"
const DictOrderStatus = new Enum([
{key : '1', name : '待支付'},
{key : '2', name : '已关闭'},
{key : '3', name : '待发货'},
{key : '4', name : '已发货'},
{key : '6', name : '已收货'},
{key : '7', name : '已完成'}
])
export {
DictOrderStatus
}