mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-26 00:45:08 +08:00
26 lines
445 B
Vue
26 lines
445 B
Vue
<template>
|
|
<el-alert v-if="enable()" :title="'【' + title + '】文档地址:' + url" type="success" show-icon />
|
|
</template>
|
|
|
|
<script>
|
|
import {getDocEnable} from "@/utils/ruoyi";
|
|
|
|
export default {
|
|
name: "DocAlert",
|
|
props: {
|
|
title: String,
|
|
url: String,
|
|
},
|
|
methods: {
|
|
enable: function () {
|
|
return getDocEnable();
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
.el-alert--success.is-light {
|
|
margin-bottom: 10px;
|
|
}
|
|
</style>
|