|
@@ -104,11 +104,12 @@ export default {
|
|
|
return ''
|
|
|
},
|
|
|
isPay () {
|
|
|
- return this.orderBundle.orderFlag === 'PAED'
|
|
|
+ // 结算状态为已支付或已退款都应存在支付时间与支付金额
|
|
|
+ return this.orderBundle.orderFlag === 'PAED' || this.orderBundle.orderFlag === 'RUND'
|
|
|
+ },
|
|
|
+ isRund () {
|
|
|
+ return this.orderBundle.orderFlag === 'RUND'
|
|
|
},
|
|
|
- isRund(){
|
|
|
- return this.orderBundle.orderFlag === 'RUND'
|
|
|
- },
|
|
|
isCancel () {
|
|
|
return this.orderBundle.orderFlag === 'CAEL' || this.orderBundle.orderFlag === 'SYCA'
|
|
|
},
|