mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-18 01:06:39 +08:00
chore: update copyright information
This commit is contained in:
parent
a0a506a3c4
commit
ff76e4bd89
@ -5,4 +5,4 @@ VUE_APP_PASS=12345678
|
||||
VUE_APP_ADMIN_USER=admin
|
||||
VUE_APP_ADMIN_PASS=admin123
|
||||
VUE_APP_KEY_PREFIX=ChatPLUS_DEV_
|
||||
VUE_APP_TITLE="Chat-Plus V3"
|
||||
VUE_APP_TITLE="ChatPlus-AI 创作系统"
|
||||
|
@ -1,4 +1,4 @@
|
||||
VUE_APP_API_HOST=
|
||||
VUE_APP_WS_HOST=
|
||||
VUE_APP_KEY_PREFIX=ChatPLUS_
|
||||
VUE_APP_TITLE="Chat-Plus V3"
|
||||
VUE_APP_TITLE="ChatPlus-AI 创作系统"
|
||||
|
@ -1,16 +1,17 @@
|
||||
<template>
|
||||
<div class="container">
|
||||
<div class="footer">
|
||||
Powered by {{author}} @
|
||||
<el-link type="primary" href="https://github.com/yangjian102621/chatgpt-plus" target="_blank">{{title}}</el-link>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="footer">
|
||||
Powered by {{ author }} @
|
||||
<el-link type="primary" href="https://github.com/yangjian102621/chatgpt-plus" target="_blank">{{ title }}
|
||||
</el-link>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script setup>
|
||||
|
||||
import {ref} from "vue";
|
||||
|
||||
const title = ref('ChatGPT-Plus-V3')
|
||||
const title = ref(process.env.VUE_APP_TITLE)
|
||||
const author = ref('极客学长')
|
||||
</script>
|
||||
|
||||
@ -22,6 +23,7 @@ const author = ref('极客学长')
|
||||
width: 100%;
|
||||
display flex;
|
||||
justify-content center
|
||||
|
||||
.footer {
|
||||
max-width 400px;
|
||||
text-align center;
|
||||
|
@ -42,7 +42,7 @@
|
||||
<a href="https://github.com/yangjian102621/chatgpt-plus" target="_blank">
|
||||
<el-dropdown-item>
|
||||
<i class="iconfont icon-github"></i>
|
||||
<span>ChatGPT-Plus-V3</span>
|
||||
<span>{{ sysTitle }}</span>
|
||||
</el-dropdown-item>
|
||||
</a>
|
||||
<el-dropdown-item @click="showDialog = true">
|
||||
@ -84,6 +84,7 @@ import {httpGet} from "@/utils/http";
|
||||
import {ElMessage} from "element-plus";
|
||||
|
||||
const message = ref(5);
|
||||
const sysTitle = ref(process.env.VUE_APP_TITLE)
|
||||
const avatar = ref('/images/user-info.jpg')
|
||||
const donateImg = ref('/images/wechat-pay.png')
|
||||
const showDialog = ref(false)
|
||||
|
@ -64,7 +64,7 @@ import {prevRoute} from "@/router";
|
||||
import ResetPass from "@/components/ResetPass.vue";
|
||||
|
||||
const router = useRouter();
|
||||
const title = ref('ChatGPT-PLUS 用户登录');
|
||||
const title = ref('ChatPlus 用户登录');
|
||||
const username = ref(process.env.VUE_APP_USER);
|
||||
const password = ref(process.env.VUE_APP_PASS);
|
||||
const showResetPass = ref(false)
|
||||
|
@ -128,7 +128,7 @@ import {setUserToken} from "@/store/session";
|
||||
import {checkSession} from "@/action/session";
|
||||
|
||||
const router = useRouter();
|
||||
const title = ref('ChatGPT-PLUS 用户注册');
|
||||
const title = ref('ChatPlus 用户注册');
|
||||
const formData = ref({
|
||||
mobile: '',
|
||||
password: '',
|
||||
@ -151,7 +151,7 @@ httpGet("/api/admin/config/get?key=system").then(res => {
|
||||
dangerouslyUseHTMLString: true,
|
||||
message: '当前系统开启了强制邀请注册功能,必须有邀请码才能注册哦。扫描下面二维码获取邀请码。<br/> <img alt="qrcode" src="/images/wx.png" />',
|
||||
type: 'info',
|
||||
duration: 0,
|
||||
duration: 5000,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user