纸通宝SAAS仓库
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.
 

31 lines
862 B

// 订单状态。0:待接单,10:待反馈, 1:待验货,2:待确认,23:待厂长审核 3:待付款,30:待运营审核,31:待会计审核 4:已完成,5:已取消,6:不通过
function orderStatus(status) {
if(status == 0){
return '待接单'
} else if(status == 10){
return '待反馈'
} else if(status == 1){
return '待验货'
} else if(status == 2){
return '待确认'
} else if(status == 23){
return '待厂长审核'
} else if(status == 3){
return '待付款'
} else if(status == 30){
return '待运营审核'
} else if(status == 31){
return '待会计审核'
} else if(status == 4){
return '已完成'
} else if(status == 5){
return '已取消'
} else if(status == 6){
return '不通过'
}
return ''
}
module.exports = {
orderStatus: orderStatus
}