Browse Source

这是弹窗不会关闭的修改

Hongxilin
donghaolin 5 months ago
parent
commit
eb1d1288e7
  1. 3
      vue/gold-system/src/views/managerecharge/activity.vue
  2. 14
      vue/gold-system/src/views/managerecharge/rate.vue
  3. 3
      vue/gold-system/src/views/recharge/addRecharge.vue

3
vue/gold-system/src/views/managerecharge/activity.vue

@ -114,7 +114,7 @@ const openAddActivityVisible = function () {
addActivityVisible.value = true; addActivityVisible.value = true;
}; };
// //
const closeAddActivityVisible = function () {
const closeAddActivityVisible = function (done) {
addActivityVisible.value = false; addActivityVisible.value = false;
}; };
// //
@ -444,6 +444,7 @@ onMounted(async function () {
title="新增活动" title="新增活动"
width="500" width="500"
:before-close="closeAddActivityVisible" :before-close="closeAddActivityVisible"
:close-on-click-modal="false"
> >
<template #footer> <template #footer>
<el-form <el-form

14
vue/gold-system/src/views/managerecharge/rate.vue

@ -459,7 +459,12 @@ const checkNumber = function () {
</el-row> </el-row>
<!-- 这是添加弹窗 --> <!-- 这是添加弹窗 -->
<el-dialog v-model="regeAdd" title="新增汇率" width="500">
<el-dialog
v-model="regeAdd"
title="新增汇率"
width="500"
:close-on-click-modal="false"
>
<template #footer> <template #footer>
<el-form <el-form
ref="Ref" ref="Ref"
@ -523,7 +528,12 @@ const checkNumber = function () {
</el-dialog> </el-dialog>
<!-- 这是编辑弹窗 --> <!-- 这是编辑弹窗 -->
<el-dialog v-model="regeEdit" title="修改汇率" width="500">
<el-dialog
v-model="regeEdit"
title="修改汇率"
width="500"
:close-on-click-modal="false"
>
<template #footer> <template #footer>
<el-form <el-form
ref="ruleFormRef" ref="ruleFormRef"

3
vue/gold-system/src/views/recharge/addRecharge.vue

@ -779,7 +779,7 @@ const batchAdd = function () {
<!-- 客户信息栏 --> <!-- 客户信息栏 -->
<el-card <el-card
style="width: 850px; float: right"
style="width: 1200px; float: right"
class="customer-info" class="customer-info"
width="3000px" width="3000px"
> >
@ -788,6 +788,7 @@ const batchAdd = function () {
label-width="auto" label-width="auto"
style="max-width: 1200px" style="max-width: 1200px"
label-position="left" label-position="left"
width="1000px"
> >
<el-text size="large" style="margin-left: 20px">客户信息</el-text> <el-text size="large" style="margin-left: 20px">客户信息</el-text>
<el-row style="margin-top: 20px"> <el-row style="margin-top: 20px">

Loading…
Cancel
Save