fix: 标题
This commit is contained in:
@@ -136,7 +136,7 @@ aj:
|
|||||||
cache-number: 1000 # local 缓存的阈值,达到这个值,清除缓存
|
cache-number: 1000 # local 缓存的阈值,达到这个值,清除缓存
|
||||||
timing-clear: 180 # local定时清除过期缓存(单位秒),设置为0代表不执行
|
timing-clear: 180 # local定时清除过期缓存(单位秒),设置为0代表不执行
|
||||||
type: blockPuzzle # 验证码类型 default 三种都实例化。blockPuzzle 滑块拼图、clickWord 文字点选、pictureWord 文本输入
|
type: blockPuzzle # 验证码类型 default 三种都实例化。blockPuzzle 滑块拼图、clickWord 文字点选、pictureWord 文本输入
|
||||||
water-mark: 芋道源码 # 右下角水印文字(我的水印),可使用 https://tool.chinaz.com/tools/unicode.aspx 中文转 Unicode,Linux 可能需要转 unicode
|
water-mark: 诺力智能 # 右下角水印文字(我的水印),可使用 https://tool.chinaz.com/tools/unicode.aspx 中文转 Unicode,Linux 可能需要转 unicode
|
||||||
interference-options: 0 # 滑动干扰项(0/1/2)
|
interference-options: 0 # 滑动干扰项(0/1/2)
|
||||||
req-frequency-limit-enable: false # 接口请求次数一分钟限制是否开启 true|false
|
req-frequency-limit-enable: false # 接口请求次数一分钟限制是否开启 true|false
|
||||||
req-get-lock-limit: 5 # 验证失败5次,get接口锁定
|
req-get-lock-limit: 5 # 验证失败5次,get接口锁定
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# 应用标题
|
# 应用标题
|
||||||
VITE_APP_TITLE=芋道管理系统
|
VITE_APP_TITLE=诺力后台管理系统
|
||||||
|
|
||||||
# 应用命名空间,用于缓存、store等功能的前缀,确保隔离
|
# 应用命名空间,用于缓存、store等功能的前缀,确保隔离
|
||||||
VITE_APP_NAMESPACE=yudao-vben-antd
|
VITE_APP_NAMESPACE=yudao-vben-antd
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ import { useVbenForm } from '@vben-core/form-ui';
|
|||||||
import { VbenButton, VbenCheckbox } from '@vben-core/shadcn-ui';
|
import { VbenButton, VbenCheckbox } from '@vben-core/shadcn-ui';
|
||||||
|
|
||||||
import Title from './auth-title.vue';
|
import Title from './auth-title.vue';
|
||||||
import DocLink from './doc-link.vue';
|
|
||||||
import ThirdPartyLogin from './third-party-login.vue';
|
|
||||||
|
|
||||||
interface Props extends AuthenticationProps {
|
interface Props extends AuthenticationProps {
|
||||||
formSchema?: VbenFormSchema[];
|
formSchema?: VbenFormSchema[];
|
||||||
@@ -154,50 +152,5 @@ defineExpose({
|
|||||||
>
|
>
|
||||||
{{ submitButtonText || $t('common.login') }}
|
{{ submitButtonText || $t('common.login') }}
|
||||||
</VbenButton>
|
</VbenButton>
|
||||||
|
|
||||||
<div
|
|
||||||
v-if="showCodeLogin || showQrcodeLogin"
|
|
||||||
class="mt-4 mb-2 flex items-center justify-between"
|
|
||||||
>
|
|
||||||
<VbenButton
|
|
||||||
v-if="showCodeLogin"
|
|
||||||
class="w-1/2"
|
|
||||||
variant="outline"
|
|
||||||
@click="handleGo(codeLoginPath)"
|
|
||||||
>
|
|
||||||
{{ $t('authentication.mobileLogin') }}
|
|
||||||
</VbenButton>
|
|
||||||
<VbenButton
|
|
||||||
v-if="showQrcodeLogin"
|
|
||||||
class="ml-4 w-1/2"
|
|
||||||
variant="outline"
|
|
||||||
@click="handleGo(qrCodeLoginPath)"
|
|
||||||
>
|
|
||||||
{{ $t('authentication.qrcodeLogin') }}
|
|
||||||
</VbenButton>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- 第三方登录 -->
|
|
||||||
<slot name="third-party-login">
|
|
||||||
<ThirdPartyLogin
|
|
||||||
v-if="showThirdPartyLogin"
|
|
||||||
@third-login="handleThirdLogin"
|
|
||||||
/>
|
|
||||||
</slot>
|
|
||||||
|
|
||||||
<slot name="to-register">
|
|
||||||
<div v-if="showRegister" class="mt-3 text-center text-sm">
|
|
||||||
{{ $t('authentication.accountTip') }}
|
|
||||||
<span
|
|
||||||
class="vben-link text-sm font-normal"
|
|
||||||
@click="handleGo(registerPath)"
|
|
||||||
>
|
|
||||||
{{ $t('authentication.createAccount') }}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</slot>
|
|
||||||
|
|
||||||
<!-- 萌新必读 -->
|
|
||||||
<DocLink />
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user