优化关闭弹窗再次打开数据显示问题

This commit is contained in:
jia 2023-08-14 17:49:08 +08:00
parent b6794b7fe9
commit f20f9a5a8b

View File

@ -81,7 +81,7 @@
</div>
</el-card>
<!--审核-->
<el-dialog v-if="dialogVisible" :title="isExamine ? '审核' : '详情'" :visible.sync="dialogVisible" width="700px">
<el-dialog v-if="dialogVisible" :before-close="handleClose" :title="isExamine ? '审核' : '详情'" :visible.sync="dialogVisible" width="700px">
<div v-loading="loading">
<el-form ref="ruleForm" :model="ruleForm" :rules="rules" label-width="120px" class="demo-ruleForm">
<el-form-item label="'封面:'">
@ -247,11 +247,12 @@ export default {
},
// 1: -1:
onSubmit(item) {
if (this.ruleForm.status == 1) {
resaleStatus(item.community_id, { "status": 1 ,float_rate:this.ruleForm.float_rate}).then((res) => {
resaleStatus(item.community_id, { "status": 1, float_rate: this.ruleForm.float_rate }).then((res) => {
this.$message.success(res.message)
this.dialogVisible = false
this.ruleForm.float_rate = ''
this.formData = res.data
}).catch(({ message }) => {
this.$message.error(message)
@ -260,6 +261,7 @@ export default {
resaleStatus(item.community_id, { "status": -1, "refusal": this.ruleForm.refusal }).then((res) => {
this.$message.success(res.message)
this.dialogVisible = false
this.ruleForm.refusal = ''
this.formData = res.data
}).catch(({ message }) => {
this.$message.error(message)
@ -267,6 +269,12 @@ export default {
}
},
//
handleClose() {
this.dialogVisible = false
this.ruleForm.refusal = ''
this.ruleForm.float_rate = 0
},
//
onAudit(id) {
this.community_id = id;