chore: update copyright information

This commit is contained in:
RockYang 2023-12-18 18:19:41 +08:00
parent a0a506a3c4
commit ff76e4bd89
6 changed files with 15 additions and 12 deletions

View File

@ -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 创作系统"

View File

@ -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 创作系统"

View File

@ -2,7 +2,8 @@
<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>
<el-link type="primary" href="https://github.com/yangjian102621/chatgpt-plus" target="_blank">{{ title }}
</el-link>
</div>
</div>
</template>
@ -10,7 +11,7 @@
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;

View File

@ -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)

View File

@ -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)

View File

@ -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,
})
}
}