feat(靓号申请页): 调整关闭窗口的方法并使用

This commit is contained in:
hzj 2025-12-17 18:27:16 +08:00
parent b77d349a20
commit a874362f33

View File

@ -136,6 +136,7 @@
@close="userDeatilsDrawerVisible = false"
/>
<!-- 同意确认窗口 -->
<el-dialog
title="是否同意该申请"
:visible="AgreeWindowVisible"
@ -152,12 +153,12 @@
</div>
</el-dialog>
<!-- 驳回窗口 -->
<!-- 驳回操作窗口 -->
<apply-handle
v-if="RejectWindowVisible"
:user-id="RejectTargetID"
@success="renderDataSuccess"
@close="RejectWindowVisible = false"
@close="handleClose"
/>
</div>
</template>
@ -275,8 +276,9 @@ export default {
//
handleClose() {
const that = this;
that.RejectTargetID = "";
that.AgreeTargetID = "";
that.RejectWindowVisible = false;
that.AgreeWindowVisible = false;
},