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

22 lines
309 B

7 months ago
  1. export default {
  2. methods: {
  3. isLeaseStatus(item){
  4. if(!item.startTime
  5. && item.leaseFlag
  6. && item.status == 0){
  7. return '待收货'
  8. }
  9. if(item.status != 0){
  10. return ['正常', '换货中', '退货中'][item.status]
  11. }
  12. if(item.isWash){
  13. return '水洗中'
  14. }
  15. }
  16. }
  17. }