Michael Yang
2025-04-26 5cc15be160e926ffa0ea6c2ed3e05b34b01123ea
chore: update styles and version
3个文件已修改
16 ■■■■ 已修改文件
aiflowy-commons/aiflowy-common-base/src/main/java/tech/aiflowy/common/Consts.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
aiflowy-ui-react/index.html 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
aiflowy-ui-react/src/pages/commons/login.tsx 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
aiflowy-commons/aiflowy-common-base/src/main/java/tech/aiflowy/common/Consts.java
@@ -1,7 +1,7 @@
package tech.aiflowy.common;
public class Consts {
    public static final String VERSION = "1.0.0-rc.1";
    public static final String VERSION = "v1.0.0";
    public static final String REQ_ATTR_ACCOUNT_ID = "loginAccountId";
    public static final String JWT_ATTR_SESSION_ID = "sessionId";
aiflowy-ui-react/index.html
@@ -6,6 +6,15 @@
    <link rel="icon" type="image/svg+xml" href="/favicon.png" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <script src="https://turing.captcha.qcloud.com/TCaptcha.js"></script>
    <script>
      var _hmt = _hmt || [];
      (function() {
        var hm = document.createElement("script");
        hm.src = "https://hm.baidu.com/hm.js?42639a1503843c26bc4d8b35185616d9";
        var s = document.getElementsByTagName("script")[0];
        s.parentNode.insertBefore(hm, s);
      })();
    </script>
  </head>
  <body>
    <div id="root"></div>
aiflowy-ui-react/src/pages/commons/login.tsx
@@ -49,7 +49,7 @@
    return (
        <div className={styles.container} style={{backgroundImage: `url(${loginBg})`}}>
        <div className={styles.container} style={{backgroundImage: `url(${loginBg})`,position:"relative"}}>
            <Flex vertical={false} style={{margin: "200px"}}>
                <div>
                    <img alt="" src={loginImage} style={{height: "600px"}}/>
@@ -68,7 +68,7 @@
                    }}
                >
                    <h1 style={{margin: '50px 0',}}>登录 </h1>
                    <h1 style={{margin: '50px 0',}}>登录</h1>
                    <Form.Item
                        name="account"
@@ -107,6 +107,7 @@
                </Form>
            </Flex>
            <div style={{position:"absolute",bottom:"20px",right:"20px",color:"#fff",fontSize:"14px"}}><a href="https://aiflowy.tech" style={{color:"#fff"}} target="_blank">AIFlowy.tech</a> (v1.0.0)</div>
        </div>
    )
}