202507251746

This commit is contained in:
张潘 2025-08-13 01:30:44 +08:00
parent 0a34deda55
commit 078e4f07d0
1 changed files with 188 additions and 192 deletions

View File

@ -1,5 +1,6 @@
<template>
<el-dialog title="统一退款" :visible.sync="visible" width="900px" @close="handleClose">
<el-form ref="refundForm" :model="refundForm" label-width="100px">
<div class="refund-container">
<!-- 支付信息展示 -->
<div class="payment-info" v-if="paymentData">
@ -77,7 +78,6 @@
min="0"
step="0.01"
@input="calculateTotalRefund"
:max="paymentData.wechatAmount || 0"
>
<template slot="prepend"></template>
</el-input>
@ -93,7 +93,6 @@
min="0"
step="0.01"
@input="calculateTotalRefund"
:max="paymentData.balanceAmount || 0"
>
<template slot="prepend"></template>
</el-input>
@ -109,7 +108,6 @@
min="0"
step="0.01"
@input="calculateTotalRefund"
:max="paymentData.shoppingGoldAmount || 0"
>
<template slot="prepend"></template>
</el-input>
@ -127,7 +125,6 @@
min="0"
step="0.01"
@input="calculateTotalRefund"
:max="paymentData.serviceGoldAmount || 0"
>
<template slot="prepend"></template>
</el-input>
@ -143,7 +140,6 @@
min="0"
step="0.01"
@input="calculateTotalRefund"
:max="paymentData.memberDiscountAmount || 0"
>
<template slot="prepend"></template>
</el-input>
@ -159,7 +155,6 @@
min="0"
step="0.01"
@input="calculateTotalRefund"
:max="paymentData.couponAmount || 0"
>
<template slot="prepend"></template>
</el-input>
@ -199,6 +194,7 @@
</el-form-item>
</div>
</div>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="handleClose">取消</el-button>