酒店桌布为微信小程序
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.
 
 
 

23 lines
309 B

export default {
methods: {
isLeaseStatus(item){
if(!item.startTime
&& item.leaseFlag
&& item.status == 0){
return '待收货'
}
if(item.status != 0){
return ['正常', '换货中', '退货中'][item.status]
}
if(item.isWash){
return '水洗中'
}
}
}
}