Files
double-rack/ruoyi-ui/src/settings.js
wangyu 41abb2337a fix(ui): 修复图标重叠、改名、去头像、重构生产计划页
- 修复全局紧凑样式导致前缀图标与输入框文字重叠问题
  (补充 .el-input--prefix 的 padding-left 覆盖规则)
- 登录页恢复 38px 输入高度并修正前缀图标对齐
- 所有环境标题统一改为「科伦普冷轧双机架控制平台」
  (env.development / env.production / env.staging / vue.config.js / settings.js)
- Navbar 去除用户头像图片,改用图标+用户名文字,移除「布局设置」菜单项
- 生产计划页重构为左侧钢卷列表+右侧详情布局(与工艺管理页一致)
  工艺方案改为可选项,支持不绑定方案直接新建钢卷

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-28 15:54:45 +08:00

47 lines
692 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

module.exports = {
/**
* 网站标题
*/
title: '科伦普冷轧双机架控制平台',
/**
* 侧边栏主题:固定使用工业深色主题
*/
sideTheme: 'theme-dark',
/**
* 是否显示右上角设置按钮(生产环境建议关闭)
*/
showSettings: false,
/**
* 是否显示顶部导航
*/
topNav: false,
/**
* 是否显示 tagsView多标签页
*/
tagsView: true,
/**
* 是否固定头部
*/
fixedHeader: true,
/**
* 是否显示侧边栏 Logo
*/
sidebarLogo: true,
/**
* 是否显示动态标题
*/
dynamicTitle: true,
/**
* 错误日志显示环境
*/
errorLog: 'production'
}