yumoqing 39af416625 fix: 记账失败记录页面的查询和重试按钮
修复 failed_accounting.ui 中两个按钮的 JavaScript 错误:

查询按钮:
- 替换 this.root.getElementById() 为 bricks.getWidgetById()
- 替换 DataViewer.load() 为 render() (正确的公开API)
- 使用 getValue() 获取输入控件值

重试按钮:
- 替换 this.root.getElementById() 为 bricks.getWidgetById()
- 替换 selected_row 为 select_row (正确的内部属性名)
- 通过 .user_data 访问行数据
- 替换 dv.load() 为 dv.render()
- 使用 entire_url() 模板生成正确的 API URL
- 改用 async/await 替代 Promise chain

根本原因: 原代码使用了不存在的 bricks API
(this.root.getElementById, DataViewer.load, selected_row)
2026-06-12 14:28:50 +08:00
..
2025-08-29 21:29:25 +08:00
2026-05-19 16:21:23 +08:00
2026-05-19 16:12:54 +08:00
2026-03-18 11:40:00 +08:00
2026-05-16 15:14:31 +08:00
2026-05-08 10:54:33 +08:00
2026-04-27 10:41:15 +08:00
2026-04-05 16:02:45 +08:00
2026-04-10 16:48:33 +08:00
2026-03-30 12:04:24 +08:00
2026-06-09 14:01:08 +08:00
2026-03-30 16:07:52 +08:00
2026-03-18 13:42:40 +08:00
2026-03-27 13:20:16 +08:00
2026-04-08 17:28:32 +08:00
2026-03-29 17:28:39 +08:00