feat: 完成市场排名和AI看涨跌页面

This commit is contained in:
clz
2026-07-21 19:36:30 +08:00
commit ad900489f5
49 changed files with 1352 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
import { Card } from '../common/Card';
import { AIView } from '../ai-view/AIView';
import { MarketRanking } from '../market-ranking/MarketRanking';
@Entry
@Component
struct Index {
build() {
Scroll() {
Column({ space: 16 }) {
Card() {
AIView()
}
Card() {
MarketRanking()
}
}
.width('100%')
.padding(16)
.alignItems(HorizontalAlign.Center)
.justifyContent(FlexAlign.Start)
}
.width('100%')
.height('100%')
.align(Alignment.Top)
.backgroundColor($r('app.color.page_bg'))
}
}