莳松crm管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ss-crm-manage-web/src/views/Clue/Pool/Comp/DialogSchoolInfo.vue

24 lines
521 B

1 year ago
<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
1 year ago
detail.value = info.introduce || '该驾校暂未配置详细信息'
1 year ago
}
defineExpose({
open
})
</script>
<style lang="scss" scoped></style>