| 123456789101112131415161718192021222324252627 |
- @extends('Yunshop\AreaDividend::area.refund.modal_base')
- @section('operation_pass')
- @if($order['has_one_refund_apply']['status'] == \app\common\models\refund\RefundApply::WAIT_CHECK)
- <label class='radio-inline'>
- <input type='radio' value='3' class="refund-action" data-action="{{yzWebUrl('refund.operation.pass')}}"
- name='refund_status'>通过申请(需客户寄回商品)
- </label>
- @endif
- @endsection
- @section('operation_resend')
- @if($order['has_one_refund_apply']['status'] < \app\common\models\refund\RefundApply::WAIT_RESEND_GOODS)
- <label class='radio-inline'>
- <input type='radio' value='5' class="refund-action" name='refund_status'
- data-action="{{yzWebUrl('refund.operation.resend')}}">
- 确认发货 @if($order['has_one_refund_apply']['status'] < \app\backend\modules\refund\models\RefundApply::WAIT_RECEIVE_RETURN_GOODS)
- (无需客户寄回商品,商家直接发换货商品)@endif
- </label>
- @endif
- {{--@if($order['has_one_refund_apply']['is_refunding'])
- <label class='radio-inline'>
- <input type='radio' value='10' class="refund-action"
- data-action="{{yzWebUrl('refund.operation.close')}}"
- name='refund_status'>关闭申请(换货完成)
- </label>
- @endif--}}
- @endsection
|