feat: 添加交易类型枚举,更新交易页面以支持买入和卖出功能

This commit is contained in:
2026-01-07 20:42:04 +07:00
parent accc5a3ccd
commit 4e93fcdf65
5 changed files with 26 additions and 62 deletions

View File

@@ -30,3 +30,8 @@ export enum GenderEnum {
FEMALE = "female",
OTHER = "other",
}
export enum TradeTypeEnum {
BUY = "buy",
SELL = "sell",
}