99 lines
2.6 KiB
Vue
99 lines
2.6 KiB
Vue
<template>
|
||
<el-dialog v-model="aboutDialogVisible" class="about-dialog">
|
||
<template #header="{ titleId, titleClass }">
|
||
<div class="flex-center">
|
||
<div class="logo mr-4"></div>
|
||
<div class="app-logo-font about-title" :id="titleId" :class="titleClass">
|
||
{{ defaultTitle }}
|
||
</div>
|
||
</div>
|
||
</template>
|
||
<div class="about-ui">
|
||
<el-card
|
||
shadow="hover"
|
||
class="mb-16"
|
||
@click="toUrl('https://github.com/1Panel-dev/MaxKB/wiki')"
|
||
>
|
||
<div class="flex align-center cursor">
|
||
<AppIcon iconName="app-reading" class="mr-16 ml-8" style="font-size: 24px"></AppIcon>
|
||
<span>用户手册</span>
|
||
</div>
|
||
</el-card>
|
||
<el-card shadow="hover" class="mb-16" @click="toUrl('https://github.com/1Panel-dev/MaxKB')">
|
||
<div class="flex align-center cursor">
|
||
<AppIcon iconName="app-github" class="mr-16 ml-8" style="font-size: 24px"></AppIcon>
|
||
<span>项目地址</span>
|
||
</div>
|
||
</el-card>
|
||
<el-card shadow="hover" class="mb-16" @click="toUrl('https://bbs.fit2cloud.com/c/mk/11')">
|
||
<div class="flex align-center cursor">
|
||
<AppIcon iconName="app-help" class="mr-16 ml-8" style="font-size: 24px"></AppIcon>
|
||
<span>论坛求助</span>
|
||
</div>
|
||
</el-card>
|
||
</div>
|
||
<div class="text-center">
|
||
当前版本号:v1.0.0-dev (build at 2024-03-21T17:32, commit: 40608781)
|
||
</div>
|
||
</el-dialog>
|
||
</template>
|
||
<script setup lang="ts">
|
||
import { ref } from 'vue'
|
||
import useStore from '@/stores'
|
||
const defaultTitle = import.meta.env.VITE_APP_TITLE
|
||
|
||
const { user } = useStore()
|
||
const version = user.version
|
||
|
||
const aboutDialogVisible = ref(false)
|
||
|
||
const open = () => {
|
||
aboutDialogVisible.value = true
|
||
}
|
||
|
||
function toUrl(url: string) {
|
||
window.open(url, '_blank')
|
||
}
|
||
|
||
defineExpose({ open })
|
||
</script>
|
||
<style lang="scss" scope>
|
||
.about-dialog {
|
||
padding: 0 0 24px 0;
|
||
border-radius: 4px;
|
||
width: 600px;
|
||
font-weight: 400;
|
||
.el-dialog__header {
|
||
background: var(--app-header-bg-color);
|
||
margin-right: 0;
|
||
height: 140px;
|
||
border-radius: 4px 4px 0 0;
|
||
box-sizing: border-box;
|
||
}
|
||
.el-dialog__title {
|
||
line-height: 140px;
|
||
}
|
||
.about-title {
|
||
font-size: 40px;
|
||
}
|
||
.logo {
|
||
background-image: url('@/assets/logo.png');
|
||
background-size: 100% 100%;
|
||
width: 59px;
|
||
height: 59px;
|
||
}
|
||
.about-ui {
|
||
width: 360px;
|
||
margin: 0 auto;
|
||
font-weight: 400;
|
||
font-size: 16px;
|
||
margin-top: 24px;
|
||
.label {
|
||
width: 180px;
|
||
text-align: left;
|
||
color: var(--app-text-color-secondary);
|
||
}
|
||
}
|
||
}
|
||
</style>
|