feat:调整公共,发布 0.1.4 版本

This commit is contained in:
hzm
2026-02-09 08:32:19 +08:00
parent 7ceb43e7a6
commit 1f72dea441
6 changed files with 17 additions and 12 deletions

View File

@@ -88,6 +88,11 @@ docker compose up -d
3. **调整频率**:点击右上角“设置”图标,可调整自动刷新的间隔时间。
4. **删除基金**:点击卡片右上角的红色删除图标即可移除。
## 💬 开发者交流群
欢迎基金实时开发者加入微信群聊讨论开发与协作:
<img src="./doc/webchatGroup.jpg" width="300">
## 📝 免责声明
本项目所有数据均来自公开接口,仅供个人学习及参考使用。数据可能存在延迟,不作为任何投资建议。

View File

@@ -3,7 +3,7 @@
import { useState, useEffect } from 'react';
import { motion, AnimatePresence } from 'framer-motion';
const ANNOUNCEMENT_KEY = 'hasClosedAnnouncement_v5';
const ANNOUNCEMENT_KEY = 'hasClosedAnnouncement_v6';
export default function Announcement() {
const [isVisible, setIsVisible] = useState(false);
@@ -65,14 +65,13 @@ export default function Announcement() {
<div style={{ color: 'var(--text)', lineHeight: '1.6', fontSize: '15px' }}>
感谢大家反馈的需求现已增加如下功能
<p>1. 持仓金额录入支持按金额</p>
<p>2. 排序支持升序降序</p>
<p>3. PC 端表格模式优化</p>
<p>4. 移动端表格模式删除按钮改为向左滑动</p>
<p>1. 邮箱账号登录以支持同步本地数据至云端</p>
<p>2. 加减仓</p>
<p>3. 版本更新提示</p>
<p>4. 性能优化</p>
以下功能会在下一个版本上线
<p>1. 减仓</p>
<p>2. 获取不到估值数据的基金能正常添加仅展示最新净值数据</p>
每一个功能的加入都会去精细设计它的UI和交互以符合项目整体的简约风格所以请大家敬请期待
<p>1. 定投</p>
<p>2. 基金历史 K 线</p>
</div>
<div style={{ display: 'flex', justifyContent: 'flex-end', marginTop: '8px' }}>

View File

@@ -3238,7 +3238,8 @@ export default function HomePage() {
}
} catch (e) {
console.error('同步云端配置异常', e);
showToast(`同步云端配置异常:${e}`, 'error');
// 临时关闭同步异常提示
// showToast(`同步云端配置异常:${e}`, 'error');
} finally {
setIsSyncing(false);
}

BIN
doc/webchatGroup.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 KiB

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "real-time-fund",
"version": "0.1.3",
"version": "0.1.4",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "real-time-fund",
"version": "0.1.3",
"version": "0.1.4",
"dependencies": {
"@dicebear/collection": "^9.3.1",
"@dicebear/core": "^9.3.1",

View File

@@ -1,6 +1,6 @@
{
"name": "real-time-fund",
"version": "0.1.3",
"version": "0.1.4",
"private": true,
"scripts": {
"dev": "next dev",