fix(HEL-105): P3b总工返工四条整改——提醒详情已读/删除与关联股票失效、编辑交易动作情绪被重置、自选股跟踪备注编辑

- 提醒详情:委派先匹配 data-review-alert-read/delete,列表行收窄为 .m-alert-row[data-alert-id]
- 提醒详情关联股票:按钮补 data-alert-stock 属性,接通 openDetailSheet
- 编辑交易:openForm 从 opts.trade 带入 action/emotion,不再强制 buy/calm
- 自选股:双图详情补「跟踪备注」展示+编辑抽屉(≤240),保存走 /api/watchlist upsert 并刷新列表

Co-authored-by: multica-agent <github@multica.ai>
This commit is contained in:
施工员
2026-08-25 02:11:46 +08:00
co-authored by multica-agent
parent 291a61f6ac
commit b30ce409ea
2 changed files with 111 additions and 4 deletions
+34
View File
@@ -2765,6 +2765,40 @@
.m-num-strong { font-weight: 600; }
.m-cell-text--empty { color: var(--text-tertiary); }
/* 详情 Sheet 内跟踪备注行 */
.m-remark-row {
display: flex;
align-items: center;
gap: 10px;
margin: 12px 0 0;
padding: 10px 12px;
background: var(--surface);
border-radius: 8px;
}
.m-remark-label { flex: 0 0 auto; font-size: 12px; color: var(--text-secondary); }
.m-remark-text {
flex: 1 1 auto;
min-width: 0;
font-size: 13.5px;
color: var(--text-primary);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.m-remark-edit {
flex: 0 0 auto;
appearance: none;
border: none;
background: transparent;
color: var(--action);
font-size: 13px;
font-weight: 600;
cursor: pointer;
padding: 4px 2px;
-webkit-tap-highlight-color: transparent;
}
.m-remark-edit:active { opacity: 0.7; }
/* 自选股:颜色圆点标记 */
.m-stock--watch { flex-direction: row; align-items: center; gap: 8px; }
.m-stock-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; min-width: 0; }