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
567 B

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