Files
ss-crm-manage-web/src/views/Clue/Pool/Comp/DialogSchoolInfo.vue

24 lines
521 B
Vue
Raw Normal View History

2024-06-25 19:31:55 +08:00
<template>
<el-dialog width="800px" :title="title" v-model="show" append-to-body>
<div v-dompurify-html="detail" class="mb-20px"></div>
</el-dialog>
</template>
<script setup name="DialogSchoolInfo">
const title = ref('')
const show = ref(false)
const detail = ref('')
function open(info) {
title.value = `${info.schoolName}】详细信息`
show.value = true
2024-06-26 18:24:45 +08:00
detail.value = info.introduce || '该驾校暂未配置详细信息'
2024-06-25 19:31:55 +08:00
}
defineExpose({
open
})
</script>
<style lang="scss" scoped></style>