📝(layer): 修复 close 与 closeAll 案例

This commit is contained in:
就眠儀式 2022-06-27 14:11:53 +08:00
parent f3aaadee00
commit 4a52df1f28
3 changed files with 7 additions and 6 deletions

View File

@ -461,19 +461,20 @@ const openComponent2 = () => {
</template>
<script setup>
import { layer } from "../../../../layer/src/index"
import { layer } from "../../../../layer/src/index";
let id = null;
const open = function() {
const id = layer.open({
id = layer.open({
title: "标题",
content: "内容",
shade: false
})
return id;
}
const close = function() {
layer.close(open);
layer.close(id);
}
const closeAll = function() {

View File

@ -31,7 +31,7 @@ const cleanInstance = () => {
const isExist = (id: any) => {
let b = false;
layerInstance.forEach((item: any, index: number) => {
if (item.modalContainer.id === id) {
if (item.modalContainer.id == id) {
b = true;
}
});