|  | @@ -46,12 +46,15 @@
 | 
	
		
			
				|  |  |              <Form-item label="微信退款单号" prop="refundId">
 | 
	
		
			
				|  |  |                  <i-input v-model="orderRefund.refundId" placeholder="微信退款单号" readonly/>
 | 
	
		
			
				|  |  |              </Form-item>
 | 
	
		
			
				|  |  | -            <Form-item label="退款类型" prop="refundType" >
 | 
	
		
			
				|  |  | -                <i-select v-model="orderRefund.refundType" filterable placeholder="退款类型"
 | 
	
		
			
				|  |  | -                          label-in-value style="width: 240px;">
 | 
	
		
			
				|  |  | -                    <i-option v-for="refundType in refundTypeList" :value="refundType.value" :key="refundType.id">{{refundType.name}}
 | 
	
		
			
				|  |  | -                    </i-option>
 | 
	
		
			
				|  |  | -                </i-select>
 | 
	
		
			
				|  |  | +            <Form-item label="退款类型" prop="refundType" readonly>
 | 
	
		
			
				|  |  | +                <Radio-group v-model="orderRefund.refundType">
 | 
	
		
			
				|  |  | +                    <Radio label="1" disabled>
 | 
	
		
			
				|  |  | +                        <span>用户全额退款</span>
 | 
	
		
			
				|  |  | +                    </Radio>
 | 
	
		
			
				|  |  | +                    <Radio label="2" disabled>
 | 
	
		
			
				|  |  | +                        <span>系统部分退款</span>
 | 
	
		
			
				|  |  | +                    </Radio>
 | 
	
		
			
				|  |  | +                </Radio-group>
 | 
	
		
			
				|  |  |              </Form-item>
 | 
	
		
			
				|  |  |              <Form-item label="退款时间" prop="refundTime">
 | 
	
		
			
				|  |  |                  <Date-picker format="yyyy-MM-dd HH:mm:ss" v-model="orderRefund.refundTime" placeholder="退款时间" readonly style="width: 240px;"/>
 | 
	
	
		
			
				|  | @@ -60,28 +63,52 @@
 | 
	
		
			
				|  |  |                  <i-input v-model="orderRefund.refundMoney" placeholder="退款金额" readonly style="width: 240px;"/>
 | 
	
		
			
				|  |  |              </Form-item>
 | 
	
		
			
				|  |  |              <Form-item label="退款状态" prop="refundStatus">
 | 
	
		
			
				|  |  | -                <i-select v-model="orderRefund.refundStatus" filterable placeholder="退款状态"
 | 
	
		
			
				|  |  | -                          label-in-value style="width: 240px;">
 | 
	
		
			
				|  |  | -                    <i-option v-for="refundStatus in refundStatusList" :value="refundStatus.value" :key="refundStatus.id">{{refundStatus.name}}
 | 
	
		
			
				|  |  | -                    </i-option>
 | 
	
		
			
				|  |  | -                </i-select>
 | 
	
		
			
				|  |  | +                <Radio-group v-model="orderRefund.refundStatus">
 | 
	
		
			
				|  |  | +                    <Radio label="1" disabled>
 | 
	
		
			
				|  |  | +                        <span>申请中</span>
 | 
	
		
			
				|  |  | +                    </Radio>
 | 
	
		
			
				|  |  | +                    <Radio label="2" disabled>
 | 
	
		
			
				|  |  | +                        <span>退款成功</span>
 | 
	
		
			
				|  |  | +                    </Radio>
 | 
	
		
			
				|  |  | +                    <Radio label="3" disabled>
 | 
	
		
			
				|  |  | +                        <span>已拒绝</span>
 | 
	
		
			
				|  |  | +                    </Radio>
 | 
	
		
			
				|  |  | +                </Radio-group>
 | 
	
		
			
				|  |  |              </Form-item>
 | 
	
		
			
				|  |  |              <Form-item label="退款原因" prop="refundReason">
 | 
	
		
			
				|  |  |                  <i-input v-model="orderRefund.refundReason" placeholder="退款原因" readonly/>
 | 
	
		
			
				|  |  |              </Form-item>
 | 
	
		
			
				|  |  |              <Form-item label="退款入账账户" prop="refundRecvAccout">
 | 
	
		
			
				|  |  | -                <i-select v-model="orderRefund.refundRecvAccout" filterable placeholder="退款入账账户"
 | 
	
		
			
				|  |  | -                          label-in-value>
 | 
	
		
			
				|  |  | -                    <i-option v-for="refundRecvAccout in refundRecvAccoutList" :value="refundRecvAccout.value" :key="refundRecvAccout.id">{{refundRecvAccout.name}}
 | 
	
		
			
				|  |  | -                    </i-option>
 | 
	
		
			
				|  |  | -                </i-select>
 | 
	
		
			
				|  |  | +                <Radio-group v-model="orderRefund.refundRecvAccout">
 | 
	
		
			
				|  |  | +                    <Radio label="1" disabled>
 | 
	
		
			
				|  |  | +                        <span>退回银行卡</span>
 | 
	
		
			
				|  |  | +                    </Radio>
 | 
	
		
			
				|  |  | +                    <Radio label="2" disabled>
 | 
	
		
			
				|  |  | +                        <span>退回支付用户零钱</span>
 | 
	
		
			
				|  |  | +                    </Radio>
 | 
	
		
			
				|  |  | +                    <Radio label="3" disabled>
 | 
	
		
			
				|  |  | +                        <span>退还商户</span>
 | 
	
		
			
				|  |  | +                    </Radio>
 | 
	
		
			
				|  |  | +                    <Radio label="4" disabled>
 | 
	
		
			
				|  |  | +                        <span>退回支付用户零钱通</span>
 | 
	
		
			
				|  |  | +                    </Radio>
 | 
	
		
			
				|  |  | +                </Radio-group>
 | 
	
		
			
				|  |  |              </Form-item>
 | 
	
		
			
				|  |  |              <Form-item label="微信退款状态" prop="wechatRefundStatusDes">
 | 
	
		
			
				|  |  | -                <i-select v-model="orderRefund.wechatRefundStatusDes" filterable placeholder="微信退款状态"
 | 
	
		
			
				|  |  | -                          label-in-value style="width: 240px;">
 | 
	
		
			
				|  |  | -                    <i-option v-for="wechatRefundStatusDes in wechatRefundStatusDesList" :value="wechatRefundStatusDes.value" :key="wechatRefundStatusDes.id">{{wechatRefundStatusDes.name}}
 | 
	
		
			
				|  |  | -                    </i-option>
 | 
	
		
			
				|  |  | -                </i-select>
 | 
	
		
			
				|  |  | +                <Radio-group v-model="orderRefund.refundRecvAccout">
 | 
	
		
			
				|  |  | +                    <Radio label="SUCCESS" disabled>
 | 
	
		
			
				|  |  | +                        <span>退款成功</span>
 | 
	
		
			
				|  |  | +                    </Radio>
 | 
	
		
			
				|  |  | +                    <Radio label="REFUNDCLOSE" disabled>
 | 
	
		
			
				|  |  | +                        <span>退款关闭</span>
 | 
	
		
			
				|  |  | +                    </Radio>
 | 
	
		
			
				|  |  | +                    <Radio label="PROCESSING" disabled>
 | 
	
		
			
				|  |  | +                        <span>退款处理中</span>
 | 
	
		
			
				|  |  | +                    </Radio>
 | 
	
		
			
				|  |  | +                    <Radio label="CHANGE" disabled>
 | 
	
		
			
				|  |  | +                        <span>退款异常</span>
 | 
	
		
			
				|  |  | +                    </Radio>
 | 
	
		
			
				|  |  | +                </Radio-group>
 | 
	
		
			
				|  |  |              </Form-item>
 | 
	
		
			
				|  |  |              <Form-item label="审核人" prop="approver">
 | 
	
		
			
				|  |  |                  <i-input v-model="orderRefund.approver" placeholder="审核人" readonly style="width: 240px;"/>
 |