mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
perf: 更新slogan文案
This commit is contained in:
parent
277ed17f93
commit
689e74af4b
|
|
@ -64,7 +64,7 @@
|
|||
color: #1f2329;
|
||||
"
|
||||
>
|
||||
MaxKB 智能知识库
|
||||
MaxKB 智能知识库问答系统
|
||||
</div>
|
||||
</th>
|
||||
</tr>
|
||||
|
|
|
|||
|
|
@ -387,7 +387,7 @@ class SendEmailSerializer(ApiMixin, serializers.Serializer):
|
|||
system_setting.meta.get('email_use_ssl')
|
||||
)
|
||||
# 发送邮件
|
||||
send_mail(f'【MaxKB 智能知识库-{"用户注册" if state == "register" else "修改密码"}】',
|
||||
send_mail(f'【MaxKB 智能知识库问答系统-{"用户注册" if state == "register" else "修改密码"}】',
|
||||
'',
|
||||
html_message=f'{content.replace("${code}", code)}',
|
||||
from_email=system_setting.meta.get('from_email'),
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[tool.poetry]
|
||||
name = "maxkb"
|
||||
version = "0.1.0"
|
||||
description = "智能知识库"
|
||||
description = "智能知识库问答系统"
|
||||
authors = ["shaohuzhang1 <shaohu.zhang@fit2cloud.com>"]
|
||||
readme = "README.md"
|
||||
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ export const defaultSetting = {
|
|||
loginLogo: '',
|
||||
loginImage: '',
|
||||
title: 'MaxKB',
|
||||
slogan: '欢迎使用 MaxKB 智能知识库'
|
||||
slogan: '欢迎使用 MaxKB 智能知识库问答系统'
|
||||
}
|
||||
|
||||
export const defaultPlatformSetting = {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<login-layout>
|
||||
<LoginContainer subTitle="欢迎使用 MaxKB 智能知识库">
|
||||
<LoginContainer subTitle="欢迎使用 MaxKB 智能知识库问答系统">
|
||||
<h2 class="mb-24">忘记密码</h2>
|
||||
<el-form
|
||||
class="register-form"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<login-layout v-if="user.isEnterprise() ? user.themeInfo : true" v-loading="loading">
|
||||
<LoginContainer :subTitle="user.themeInfo?.slogan || '欢迎使用 MaxKB 智能知识库'">
|
||||
<LoginContainer :subTitle="user.themeInfo?.slogan || '欢迎使用 MaxKB 智能知识库问答系统'">
|
||||
<h2 class="mb-24">{{ loginMode || '普通登录' }}</h2>
|
||||
<el-form
|
||||
class="login-form"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<login-layout>
|
||||
<LoginContainer subTitle="欢迎使用 MaxKB 智能知识库">
|
||||
<LoginContainer subTitle="欢迎使用 MaxKB 智能知识库问答系统">
|
||||
<h2 class="mb-24">用户注册</h2>
|
||||
<el-form class="register-form" :model="registerForm" :rules="rules" ref="registerFormRef">
|
||||
<div class="mb-24">
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<login-layout>
|
||||
<LoginContainer subTitle="欢迎使用 MaxKB 智能知识库">
|
||||
<LoginContainer subTitle="欢迎使用 MaxKB 智能知识库问答系统">
|
||||
<h2 class="mb-24">修改密码</h2>
|
||||
<el-form
|
||||
class="reset-password-form"
|
||||
|
|
|
|||
|
|
@ -253,7 +253,7 @@ const themeForm = ref<any>({
|
|||
loginLogo: '',
|
||||
loginImage: '',
|
||||
title: 'MaxKB',
|
||||
slogan: '欢迎使用 MaxKB 智能知识库',
|
||||
slogan: '欢迎使用 MaxKB 智能知识库问答系统',
|
||||
showUserManual: false,
|
||||
userManualUrl: '',
|
||||
showForum: false,
|
||||
|
|
|
|||
Loading…
Reference in New Issue