Initial commit

Made-with: Cursor
This commit is contained in:
Daniel
2026-02-28 18:39:00 +08:00
commit a94bd44c3a
49 changed files with 917 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
Component({
properties: {
id: String,
symbol: String,
direction: String,
entry_price: [String, Number],
status: String,
position_size: [String, Number],
pnl: Number,
},
methods: {
onTap() {
if (this.data.id) {
wx.navigateTo({ url: `/pages/trade-detail/trade-detail?id=${this.data.id}` });
}
},
},
});