功能名调整

pull/415/head
王良 2024-12-06 15:34:42 +08:00
parent 42cc86f532
commit e30534cde3
3 changed files with 8 additions and 6 deletions

View File

@ -17,14 +17,16 @@ labels: Config Issue
- [ ] cache
- [ ] options
- [ ] script
- [ ] requestReplace
- [ ] responseReplace
- [ ] DNS设置和IP测速
- [ ] 系统代理
- [ ] 远程配置
- [ ] 应用:
- [ ] npm加速
- [ ] NPM加速
- [ ] Git代理
- [ ] pip加速
- [ ] 梯子
- [ ] PIP加速
- [ ] 增强功能
### Ⅱ. 请详细描述你的问题:

View File

@ -246,7 +246,7 @@ export default {
启用拦截
</a-checkbox>
<div class="form-help">
关闭拦截且关闭功能增强就不需要安装根证书退化为安全模式
关闭拦截且关闭增强功能时就不需要安装根证书退化为安全模式
</div>
</a-form-item>
<a-form-item label="启用脚本" :label-col="labelCol" :wrapper-col="wrapperCol">

View File

@ -2,7 +2,7 @@ export default function createMenus (app) {
const plugins = [
{ title: 'NPM加速', path: '/plugin/node', icon: 'like' },
{ title: 'Git.exe代理', path: '/plugin/git', icon: 'github' },
{ title: 'pip加速', path: '/plugin/pip', icon: 'bulb' },
{ title: 'PIP加速', path: '/plugin/pip', icon: 'bulb' },
]
const menus = [
{ title: '首页', path: '/index', icon: 'home' },
@ -18,7 +18,7 @@ export default function createMenus (app) {
{ title: '帮助中心', path: '/help', icon: 'star' },
]
if (app.$global && app.$global.setting && app.$global.setting.overwall) {
plugins.push({ title: '功能增强', path: '/plugin/overwall', icon: 'global' })
plugins.push({ title: '增强功能', path: '/plugin/overwall', icon: 'global' })
}
return menus
}