mirror of
https://gitee.com/myxzgzs/boyue-ui-admin-vue3
synced 2025-08-10 01:12:44 +08:00
35 lines
727 B
Vue
35 lines
727 B
Vue
<template>
|
||
<el-alert v-if="getEnable()" type="success" show-icon>
|
||
<template #title>
|
||
<div @click="goToUrl">{{ '【' + title + '】文档地址:' + url }}</div>
|
||
</template>
|
||
</el-alert>
|
||
</template>
|
||
<script setup lang="tsx">
|
||
import { propTypes } from '@/utils/propTypes'
|
||
|
||
defineOptions({ name: 'DocAlert' })
|
||
|
||
const props = defineProps({
|
||
title: propTypes.string,
|
||
url: propTypes.string
|
||
})
|
||
|
||
/** 跳转 URL 链接 */
|
||
const goToUrl = () => {
|
||
window.open(props.url)
|
||
}
|
||
|
||
/** 是否开启 */
|
||
const getEnable = () => {
|
||
return import.meta.env.VITE_APP_TENANT_ENABLE === 'true'
|
||
}
|
||
</script>
|
||
<style scoped>
|
||
.el-alert--success.is-light {
|
||
margin-bottom: 10px;
|
||
cursor: pointer;
|
||
border: 1px solid green;
|
||
}
|
||
</style>
|