diff --git a/frontend/src/components/LongTigerRankList.vue b/frontend/src/components/LongTigerRankList.vue
new file mode 100644
index 0000000..c8ff7cb
--- /dev/null
+++ b/frontend/src/components/LongTigerRankList.vue
@@ -0,0 +1,229 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *当天的龙虎榜数据通常在收盘结束后一小时左右更新
+
+
+
+
+
+
+ 代码
+
+ 名称
+ 收盘价
+ 涨跌幅
+ 龙虎榜净买额(万)
+ 龙虎榜买入额(万)
+ 龙虎榜卖出额(万)
+ 龙虎榜成交额(万)
+
+
+
+ 换手率
+ 流通市值(亿)
+ 上榜原因
+
+
+
+
+
+
+ {{ item.SECUCODE.split('.')[1].toLowerCase()+item.SECUCODE.split('.')[0] }}
+
+
+
+
+
+
+ {{ item.SECURITY_NAME_ABBR }}
+
+
+
+
+
+ {{ item.CLOSE_PRICE }}
+
+
+ {{ (item.CHANGE_RATE).toFixed(2) }}%
+
+
+
+
+
+
+
+ {{ (item.BILLBOARD_NET_AMT/10000).toFixed(2) }}
+
+
+
+
+
+
+ {{ (item.BILLBOARD_BUY_AMT/10000).toFixed(2) }}
+
+
+ {{ (item.BILLBOARD_SELL_AMT/10000).toFixed(2) }}
+
+
+ {{ (item.BILLBOARD_DEAL_AMT/10000).toFixed(2) }}
+
+
+
+
+
+
+
+
+
+
+
+ {{ (item.TURNOVERRATE).toFixed(2) }}%
+
+
+ {{ (item.FREE_MARKET_CAP/100000000).toFixed(2) }}
+
+
+ {{ item.EXPLANATION }}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/frontend/src/components/market.vue b/frontend/src/components/market.vue
index d41c67d..d74170c 100644
--- a/frontend/src/components/market.vue
+++ b/frontend/src/components/market.vue
@@ -1,13 +1,12 @@