|
|
@@ -24,6 +24,10 @@
|
|
|
<view class="refund-label"><text></text>退款状态:</view>
|
|
|
<view class="list">{{ info.status==0?'待审核':info.status==1?'已通过':info.status==2?'已驳回':info.status==3 ? '已取消':'' }}</view>
|
|
|
</view>
|
|
|
+ <view class=" refund-item" v-if="!$util.isEmpty(info.rejectReason)">
|
|
|
+ <view class="refund-label">驳回原因:</view>
|
|
|
+ <view class="list">{{info.rejectReason?info.rejectReason:''}}</view>
|
|
|
+ </view>
|
|
|
<view class=" refund-item">
|
|
|
<view class="refund-label">备注信息:</view>
|
|
|
<view class="list">{{info.remark?info.remark:''}}</view>
|
|
|
@@ -94,6 +98,7 @@ export default {
|
|
|
rejectRefund({id: this.option.id,rejectReason:this.rejectReason}).then(res=>{
|
|
|
uni.hideLoading()
|
|
|
if(res.code == 1){
|
|
|
+ that.cancelReject()
|
|
|
that.$msg('操作成功')
|
|
|
that.init()
|
|
|
}
|