| | |
| | | ref="formRef" |
| | | :rules="rules" |
| | | label-position="top" |
| | | class="order-bill-recharge phone" |
| | | class="order-bill-recharge phone chunk-form" |
| | | > |
| | | <NutFormItem class="bole-form-item" prop="refundApplyRemark" required> |
| | | <NutTextarea |
| | | placeholder="请填写您需要充值的手机号码" |
| | | placeholder="请输入退款原因" |
| | | placeholderClass="bole-input-text-placeholder" |
| | | autoSize |
| | | class="bole-input-textarea" |
| | |
| | | > |
| | | </NutTextarea> |
| | | </NutFormItem> |
| | | <div class="common-content"> |
| | | <!-- <div class="common-content"> |
| | | <nut-button class="recharge-button" type="primary" @click="handleSubmit"> |
| | | <div class="recharge-button-inner"> |
| | | <div class="recharge-button-text">提交</div> |
| | | </div> |
| | | </nut-button> |
| | | </div> |
| | | </div> --> |
| | | </NutForm> |
| | | </template> |
| | | |
| | |
| | | }); |
| | | |
| | | type Props = { |
| | | orderNo: string; |
| | | id: string; |
| | | }; |
| | | |
| | | const props = withDefaults(defineProps<Props>(), {}); |
| | |
| | | async function refundUserLifePayOrder() { |
| | | try { |
| | | let params: RefundUserLifePayOrderInput = { |
| | | id: props.orderNo, |
| | | id: props.id, |
| | | userId: blLifeRecharge.accountModel.userId, |
| | | refundApplyRemark: form.refundApplyRemark, |
| | | }; |
| | |
| | | }); |
| | | } catch (error) {} |
| | | } |
| | | |
| | | defineExpose({ |
| | | handleSubmit, |
| | | }); |
| | | </script> |