12345678910111213141516171819202122232425 |
- import { useState } from "react";
-
- export default function useSystem() {
- // 主题
- const [theme, updateTheme] = useState('light');
- const [antThemeData] = useState({
- borderRadius: 6,
- colorPrimary: '#1677ff',
- });
-
- // 其他配置
- const [app, setApp] = useState({
- fullName: '文明创城信息管理系统',
- shorName: '文明城市',
- company: ''
- });
-
- return {
- theme,
- antThemeData,
- updateTheme,
- app,
- hashRoute: true,
- }
- }
|