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.
14 lines
239 B
14 lines
239 B
function billStatus(status) {
|
|
if (status == 1) {
|
|
return '待结算'
|
|
} else if (status == 2) {
|
|
return '已结算'
|
|
} else if (status == 3) {
|
|
return '取消'
|
|
}
|
|
return ''
|
|
}
|
|
|
|
module.exports = {
|
|
billStatus: billStatus
|
|
}
|