mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-06-11 06:07:24 +08:00
Compare commits
2 Commits
d2655d32e5
...
99af75acce
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
99af75acce | ||
|
|
f9f290300f |
@ -1,15 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-dialog
|
<el-dialog :title="$t('refundDepositFee.title')" :visible.sync="dialogVisible" width="30%" @close="handleClose">
|
||||||
:title="$t('refundDepositFee.title')"
|
<el-alert :title="$t('refundDepositFee.alertText')" type="warning" :closable="false"></el-alert>
|
||||||
:visible.sync="dialogVisible"
|
|
||||||
width="30%"
|
|
||||||
@close="handleClose"
|
|
||||||
>
|
|
||||||
<el-alert
|
|
||||||
:title="$t('refundDepositFee.alertText')"
|
|
||||||
type="warning"
|
|
||||||
:closable="false"
|
|
||||||
></el-alert>
|
|
||||||
|
|
||||||
<div slot="footer" class="dialog-footer">
|
<div slot="footer" class="dialog-footer">
|
||||||
<el-button @click="dialogVisible = false">{{ $t('common.cancel') }}</el-button>
|
<el-button @click="dialogVisible = false">{{ $t('common.cancel') }}</el-button>
|
||||||
@ -45,6 +36,7 @@ export default {
|
|||||||
const response = await refundFeeDeposit(this.refundData)
|
const response = await refundFeeDeposit(this.refundData)
|
||||||
if (response.code === 0) {
|
if (response.code === 0) {
|
||||||
this.$message.success(this.$t('common.operationSuccess'))
|
this.$message.success(this.$t('common.operationSuccess'))
|
||||||
|
this.close()
|
||||||
this.$emit('success')
|
this.$emit('success')
|
||||||
} else {
|
} else {
|
||||||
this.$message.error(response.data.msg)
|
this.$message.error(response.data.msg)
|
||||||
@ -65,6 +57,7 @@ export default {
|
|||||||
.el-alert {
|
.el-alert {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dialog-footer {
|
.dialog-footer {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user