dbd-meeting-html/src/config/defaultSettings.js
471615499@qq.com 669a78fd20 1.登录页,去掉注册账户,去掉tab(src/views/user/login.vue)
2.固定语言为中文(src/locales/index.js、src/components/SeslectLang/index.jsx)
3.默认首页设置为/admin/repair/RepairDeviceList/repairStatistics(src/config/router.config.js)
4.左侧菜单固定(src/config/defaultSessting.js)
5.人员绩效前面小图标去掉(菜单设置,图标设为#)
6.工单列表页加入分页(基本重写逻辑)
7.人员绩效进入查看详情时,仅允许查看列表和详情,其余全部隐藏
8.重写了工单添加页和详情页,去掉了编辑工单功能
9.修复了添加工单后列表不加载BUG(子组件调用父组件方法handleOk)
10.故障类型、子类、报修地点、损坏原因等页面重新整理了一下,把文字统一,去掉了无用的筛选
11.人员绩效筛选加入人名,修改了重置的BUG,把全部加载改写成分页加载(a-tab上一定要加:force-render='true',预先dom加载好,否则refs获取不到,调用refresh时会报错)
12.选人时可以搜索人名或手机号(设置optionFilterProp="label",同时设置:label="item.username + item.mobile")
2024-08-31 22:01:04 +08:00

31 lines
1.1 KiB
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.

/**
* 项目默认配置项
* primaryColor - 默认主题色, 如果修改颜色不生效,请清理 localStorage
* navTheme - sidebar theme ['dark', 'light'] 两种主题
* colorWeak - 色盲模式
* layout - 整体布局方式 ['sidemenu', 'topmenu'] 两种布局
* fixedHeader - 固定 Header : boolean
* fixSiderbar - 固定左侧菜单栏 boolean
* contentWidth - 内容区布局: 流式 | 固定
*
* storageOptions: {} - Vue-ls 插件配置项 (localStorage/sessionStorage)
*
*/
export default {
navTheme: 'dark', // theme for nav menu
primaryColor: '#1890ff', // primary color of ant design
layout: 'sidemenu', // nav menu position: `sidemenu` or `topmenu`
contentWidth: 'Fluid', // layout of content: `Fluid` or `Fixed`, only works when layout is topmenu
fixedHeader: false, // sticky header
fixSiderbar: true, // sticky siderbar
colorWeak: false,
menu: {
locale: true
},
title: '淮安市机关事务服务平台',
pwa: false,
iconfontUrl: '',
production: process.env.NODE_ENV === 'production' && process.env.VUE_APP_PREVIEW !== 'true'
}