mirror of
https://github.com/yangjian102621/geekai.git
synced 2026-04-26 21:14:27 +08:00
174 lines
4.4 KiB
Vue
174 lines
4.4 KiB
Vue
<template>
|
||
<div class="welcome">
|
||
<div class="container">
|
||
<h2 class="title">{{ title }}-{{ version }}</h2>
|
||
|
||
<el-row :gutter="20">
|
||
<el-col :span="8">
|
||
<div class="grid-content">
|
||
<div class="item-title">
|
||
<div><i class="iconfont icon-quick-start"></i></div>
|
||
<div>小试牛刀</div>
|
||
</div>
|
||
|
||
<div class="list-box">
|
||
<ul>
|
||
<li v-for="item in samples" :key="item">
|
||
<a @click="send(item)">{{ item }}</a>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</el-col>
|
||
<el-col :span="8">
|
||
<div class="grid-content">
|
||
<div class="item-title">
|
||
<div><i class="iconfont icon-plugin"></i></div>
|
||
<div>插件增强</div>
|
||
</div>
|
||
|
||
<div class="list-box">
|
||
<ul>
|
||
<li v-for="item in plugins" :key="item.value">
|
||
<a @click="send(item.value)">{{ item.text }}</a>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</el-col>
|
||
<el-col :span="8">
|
||
<div class="grid-content">
|
||
<div class="item-title">
|
||
<div><i class="iconfont icon-control"></i></div>
|
||
<div>能力扩展</div>
|
||
</div>
|
||
|
||
<div class="list-box">
|
||
<ul>
|
||
<li v-for="item in capabilities" :key="item">
|
||
<span v-if="item.value === ''">{{ item.text }}</span>
|
||
<a @click="send(item.value)" v-else>{{ item.text }}</a>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</el-col>
|
||
</el-row>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
<script setup>
|
||
import { getSystemInfo } from '@/store/cache'
|
||
import { ElMessage } from 'element-plus'
|
||
import { onMounted, ref } from 'vue'
|
||
|
||
const title = ref(import.meta.env.VITE_TITLE)
|
||
const version = ref(import.meta.env.VITE_VERSION)
|
||
|
||
const samples = ref([
|
||
'用小学生都能听懂的术语解释什么是量子纠缠',
|
||
'能给一位6岁男孩的生日会提供一些创造性的建议吗?',
|
||
'如何用 Go 语言实现支持代理 Http client 请求?',
|
||
])
|
||
|
||
const plugins = ref([
|
||
{
|
||
value: '今日早报',
|
||
text: '今日早报:获取当天全球的热门新闻事件列表',
|
||
},
|
||
{
|
||
value: '微博热搜',
|
||
text: '微博热搜:新浪微博热搜榜,微博当日热搜榜单',
|
||
},
|
||
{
|
||
value: '今日头条',
|
||
text: '今日头条:给用户推荐当天的头条新闻,周榜热文',
|
||
},
|
||
])
|
||
|
||
const capabilities = ref([
|
||
{
|
||
text: '轻松扮演翻译专家,程序员,AI 女友,文案高手...',
|
||
value: '',
|
||
},
|
||
{
|
||
text: '国产大语言模型支持,百度文心,科大讯飞,ChatGLM...',
|
||
value: '',
|
||
},
|
||
{
|
||
text: '绘画:马斯克开拖拉机,20世纪,中国农村。3:2',
|
||
value: '绘画:马斯克开拖拉机,20世纪,中国农村。3:2',
|
||
},
|
||
])
|
||
|
||
onMounted(() => {
|
||
getSystemInfo()
|
||
.then((res) => {
|
||
title.value = res.data.title
|
||
})
|
||
.catch((e) => {
|
||
ElMessage.error('获取系统配置失败:' + e.message)
|
||
})
|
||
})
|
||
|
||
const emits = defineEmits(['send'])
|
||
const send = (text) => {
|
||
emits('send', text)
|
||
}
|
||
</script>
|
||
<style scoped lang="scss">
|
||
.welcome {
|
||
text-align: center;
|
||
display: flex;
|
||
justify-content: center;
|
||
margin-top: 8vh;
|
||
|
||
.container {
|
||
max-width: 768px;
|
||
width: 100%;
|
||
|
||
.title {
|
||
// font-size: 2.25rem
|
||
line-height: 2.5rem;
|
||
font-weight: 600;
|
||
margin-bottom: 4rem;
|
||
color: var(--text-color);
|
||
}
|
||
|
||
.grid-content {
|
||
.item-title {
|
||
div {
|
||
padding: 6px 10px;
|
||
|
||
.iconfont {
|
||
font-size: 24px;
|
||
}
|
||
}
|
||
}
|
||
|
||
.list-box {
|
||
ul {
|
||
padding: 10px;
|
||
|
||
li {
|
||
font-size: 14px;
|
||
padding: 0.75rem;
|
||
border-radius: 5px;
|
||
background-color: var(--chat-wel-bg);
|
||
color: var(--theme-text-color-secondary);
|
||
line-height: 1.5;
|
||
|
||
a {
|
||
cursor: pointer;
|
||
display: block;
|
||
width: 100%;
|
||
}
|
||
margin-top: 10px;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</style>
|