This commit is contained in:
parent
467e2ed95d
commit
229d0fd419
|
|
@ -41,6 +41,7 @@ import {useRouter} from "vue-router"
|
|||
const {proxy} = getCurrentInstance()
|
||||
const scrollbar = ref(null)
|
||||
const router = useRouter()
|
||||
const emit = defineEmits(['closed'])
|
||||
|
||||
let msgTab = ref("business")
|
||||
let msgList = ref([])
|
||||
|
|
@ -95,6 +96,7 @@ function detail(item) {
|
|||
}
|
||||
})
|
||||
}
|
||||
emit('closed')
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
</div>
|
||||
</template>
|
||||
<template #default>
|
||||
<msg v-if="msgVisible"/>
|
||||
<msg v-if="msgVisible" @closed="msgVisible=false"/>
|
||||
</template>
|
||||
</el-popover>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ async function del() {
|
|||
}
|
||||
|
||||
.header {
|
||||
margin-bottom: 25px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.empty {
|
||||
|
|
@ -78,7 +78,7 @@ async function del() {
|
|||
}
|
||||
|
||||
.intro {
|
||||
margin-bottom: 15px;
|
||||
margin-bottom: 10px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
|
|
|
|||
Loading…
Reference in New Issue