chore: 设置tab页签标题中英文优化

This commit is contained in:
xiaojunnuo
2025-09-13 23:33:18 +08:00
parent 7bdde68ece
commit 1476b9cb9c
8 changed files with 61 additions and 17 deletions
@@ -5,22 +5,24 @@ import { ICaptchaAddon } from "../api.js";
@IsAddon({
addonType:"captcha",
name: 'geetest',
title: '极验验证码',
title: '极验验证码v4',
desc: '',
showTest:false,
})
export class GeeTestCaptcha extends BaseAddon implements ICaptchaAddon{
@AddonInput({
title: 'captchaId',
title: '验证ID',
component: {
placeholder: 'captchaId',
},
helper:"[极验验证码v4](https://console.geetest.com/sensbot/management) -> 创建业务模块 -> 新增业务场景",
required: true,
})
captchaId = '';
@AddonInput({
title: 'captchaKey',
title: '验证Key',
component: {
placeholder: 'captchaKey',
},
@@ -8,6 +8,7 @@ import { nanoid } from "nanoid";
name: 'image',
title: '图片验证码',
desc: '',
showTest:false,
})
export class ImageCaptcha extends BaseAddon implements ICaptchaAddon{