Browse Source

修复删除气泡取消后无法再次弹出的问题

main
piexlmax 3 years ago
parent
commit
43c66566bf
  1. 2
      web/src/view/example/customer/customer.vue
  2. 2
      web/src/view/superAdmin/dictionary/sysDictionary.vue
  3. 2
      web/src/view/superAdmin/dictionary/sysDictionaryDetail.vue
  4. 2
      web/src/view/superAdmin/operation/sysOperationRecord.vue
  5. 2
      web/src/view/superAdmin/user/user.vue
  6. 2
      web/src/view/systemTools/autoCode/index.vue

2
web/src/view/example/customer/customer.vue

@ -24,7 +24,7 @@
<el-table-column align="left" label="按钮组" min-width="160"> <el-table-column align="left" label="按钮组" min-width="160">
<template #default="scope"> <template #default="scope">
<el-button size="small" type="text" icon="edit" @click="updateCustomer(scope.row)">变更</el-button> <el-button size="small" type="text" icon="edit" @click="updateCustomer(scope.row)">变更</el-button>
<el-popover :visible="scope.row.visible" placement="top" width="160">
<el-popover v-model:visible="scope.row.visible" placement="top" width="160">
<p>确定要删除吗</p> <p>确定要删除吗</p>
<div style="text-align: right; margin-top: 8px;"> <div style="text-align: right; margin-top: 8px;">
<el-button size="mini" type="text" @click="scope.row.visible = false">取消</el-button> <el-button size="mini" type="text" @click="scope.row.visible = false">取消</el-button>

2
web/src/view/superAdmin/dictionary/sysDictionary.vue

@ -95,7 +95,7 @@
@click="updateSysDictionaryFunc(scope.row)" @click="updateSysDictionaryFunc(scope.row)"
>变更</el-button> >变更</el-button>
<el-popover <el-popover
:visible="scope.row.visible"
v-model:visible="scope.row.visible"
placement="top" placement="top"
width="160" width="160"
> >

2
web/src/view/superAdmin/dictionary/sysDictionaryDetail.vue

@ -49,7 +49,7 @@
<el-table-column align="left" label="按钮组"> <el-table-column align="left" label="按钮组">
<template #default="scope"> <template #default="scope">
<el-button size="small" type="text" icon="edit" @click="updateSysDictionaryDetailFunc(scope.row)">变更</el-button> <el-button size="small" type="text" icon="edit" @click="updateSysDictionaryDetailFunc(scope.row)">变更</el-button>
<el-popover :visible="scope.row.visible" placement="top" width="160">
<el-popover v-model:visible="scope.row.visible" placement="top" width="160">
<p>确定要删除吗</p> <p>确定要删除吗</p>
<div style="text-align: right; margin-top: 8px;"> <div style="text-align: right; margin-top: 8px;">
<el-button size="mini" type="text" @click="scope.row.visible = false">取消</el-button> <el-button size="mini" type="text" @click="scope.row.visible = false">取消</el-button>

2
web/src/view/superAdmin/operation/sysOperationRecord.vue

@ -91,7 +91,7 @@
</el-table-column> </el-table-column>
<el-table-column align="left" label="按钮组"> <el-table-column align="left" label="按钮组">
<template #default="scope"> <template #default="scope">
<el-popover :visible="scope.row.visible" placement="top" width="160">
<el-popover v-model:visible="scope.row.visible" placement="top" width="160">
<p>确定要删除吗</p> <p>确定要删除吗</p>
<div style="text-align: right; margin-top: 8px;"> <div style="text-align: right; margin-top: 8px;">
<el-button size="mini" type="text" @click="scope.row.visible = false">取消</el-button> <el-button size="mini" type="text" @click="scope.row.visible = false">取消</el-button>

2
web/src/view/superAdmin/user/user.vue

@ -47,7 +47,7 @@
</el-table-column> </el-table-column>
<el-table-column align="left" label="操作" min-width="150"> <el-table-column align="left" label="操作" min-width="150">
<template #default="scope"> <template #default="scope">
<el-popover :visible="scope.row.visible" placement="top" width="160">
<el-popover v-model:visible="scope.row.visible" placement="top" width="160">
<p>确定要删除此用户吗</p> <p>确定要删除此用户吗</p>
<div style="text-align: right; margin-top: 8px;"> <div style="text-align: right; margin-top: 8px;">
<el-button size="mini" type="text" @click="scope.row.visible = false">取消</el-button> <el-button size="mini" type="text" @click="scope.row.visible = false">取消</el-button>

2
web/src/view/systemTools/autoCode/index.vue

@ -117,7 +117,7 @@
:disabled="(scope.$index + 1) === form.fields.length" :disabled="(scope.$index + 1) === form.fields.length"
@click="moveDownField(scope.$index)" @click="moveDownField(scope.$index)"
>下移</el-button> >下移</el-button>
<el-popover :visible="scope.row.visible" placement="top">
<el-popover v-model:visible="scope.row.visible" placement="top">
<p>确定删除吗</p> <p>确定删除吗</p>
<div style="text-align: right; margin-top: 8px;"> <div style="text-align: right; margin-top: 8px;">
<el-button size="mini" type="text" @click="scope.row.visible = false">取消</el-button> <el-button size="mini" type="text" @click="scope.row.visible = false">取消</el-button>

Loading…
Cancel
Save