|
|
@ -80,6 +80,7 @@ |
|
|
|
</template> |
|
|
|
|
|
|
|
<script setup lang="ts"> |
|
|
|
import { ElNotification } from 'element-plus' |
|
|
|
import { ref, computed, onMounted } from 'vue' |
|
|
|
import { useI18n } from 'vue-i18n' |
|
|
|
import { switchLanguage } from '@/i18n' |
|
|
@ -133,7 +134,11 @@ const changeLanguage = (lang: string) => { |
|
|
|
} |
|
|
|
function handleClick(item) { |
|
|
|
if (item.key === 'home' || item.key === 'renewal') { |
|
|
|
alert('功能正在开发中') |
|
|
|
// alert('功能正在开发中')] |
|
|
|
ElNotification({ |
|
|
|
title: '功能还未开放', |
|
|
|
message: "", |
|
|
|
}) |
|
|
|
router.push('/') |
|
|
|
} else { |
|
|
|
router.push(item.path) |
|
|
|