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
436 B
22 lines
436 B
import { Pipe, PipeTransform } from '@angular/core';
|
|
|
|
@Pipe({
|
|
name: 'orderCouponStatus'
|
|
})
|
|
export class OrderCouponStatusPipe implements PipeTransform {
|
|
|
|
transform(value: number): string {
|
|
switch (value) {
|
|
case 1:
|
|
return '待支付';
|
|
case 2:
|
|
return '已支付';
|
|
case 3:
|
|
return '已完成';
|
|
case 4:
|
|
return '已退款';
|
|
case 5:
|
|
return '已取消';
|
|
}
|
|
}
|
|
}
|
|
|