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