#
vincentlu
2025-02-11 45eb50fd77ad91a7cce4b68a4e1924f71b0938fa
#
4个文件已修改
18 ■■■■ 已修改文件
rsf-admin/src/i18n/en.js 5 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
rsf-admin/src/i18n/zh.js 5 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
rsf-admin/src/page/dashboard/index.jsx 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
rsf-admin/src/page/tenant/TenantCreate.jsx 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
rsf-admin/src/i18n/en.js
@@ -221,7 +221,10 @@
        }
    },
    page: {
        welcome: '    Welcome to the RSF Management System.',
        welcome: {
            index: '    Welcome to the RSF Management System.',
            tech: '    Technology stack: Java 17, SpringBoot2.5.3, Mybatis-plus_3.4.1, Spring Security, Druid 1.2.6, Redis, Mysql5.7, Node18, ReactJs, Material UI5.16, Axios, React-Admin5.1'
        },
        login: {
            title: 'Welcome',
            footer: 'Footer Goes Here',
rsf-admin/src/i18n/zh.js
@@ -221,7 +221,10 @@
        }
    },
    page: {
        welcome: '  欢迎使用RSF管理系统',
        welcome: {
            index: '  欢迎使用RSF管理系统',
            tech: '  技术栈: Java17, SpringBoot2.5.3, Mybatis-plus_3.4.1, Spring Security, Druid 1.2.6, Redis, Mysql5.7, Node18, ReactJs, Material UI5.16, Axios, React-Admin5.1'
        },
        login: {
            title: '欢迎使用',
            footer: 'Footer Goes Here',
rsf-admin/src/page/dashboard/index.jsx
@@ -31,7 +31,11 @@
                }}
            >
                <WordEffect
                    words={translate('page.welcome')}
                    words={translate('page.welcome.index')}
                    color={theme.palette.mode === 'light' ? '#666' : '#eeeeee'}
                />
                <WordEffect
                    words={translate('page.welcome.tech')}
                    color={theme.palette.mode === 'light' ? '#666' : '#eeeeee'}
                />
            </div>
rsf-admin/src/page/tenant/TenantCreate.jsx
@@ -87,8 +87,6 @@
    const onSubmit = (data) => {
        request.post('/tenant/init', data).then(res => {
            const { code, msg, data } = res.data;
            console.log(msg);
            if (code === 200) {
                notify(msg, { type: 'success', messageArgs: { _: msg } });
                setOpen(false);