diff --git a/frontend/src/pages/List.jsx b/frontend/src/pages/List.jsx
index ba6d3d8..27b9a15 100644
--- a/frontend/src/pages/List.jsx
+++ b/frontend/src/pages/List.jsx
@@ -651,6 +651,26 @@ export default function List() {
{/* 行情tab内容 */}
{activeTab === 'deals' && (
+ {/* 行情搜索框 */}
+
+ setDealSearch(e.target.value)}
+ style={{
+ width: '100%',
+ background: 'rgba(255,255,255,0.05)',
+ border: '1px solid rgba(255,255,255,0.1)',
+ color: '#fff',
+ padding: '10px 12px',
+ borderRadius: '8px',
+ fontSize: '14px',
+ outline: 'none',
+ boxSizing: 'border-box'
+ }}
+ />
+
+
{dealsLoading ? (
加载中...
) : filteredDeals.length === 0 ? (
diff --git a/frontend/src/pages/News.jsx b/frontend/src/pages/News.jsx
index 7d2472b..d469195 100644
--- a/frontend/src/pages/News.jsx
+++ b/frontend/src/pages/News.jsx
@@ -482,6 +482,11 @@ export default function News() {
) : (
{infoList.map(item => {
+ // 成交行情 tab - 暂时不显示内容
+ if (activeTab === 'deal') {
+ return null
+ }
+
// 解析正文中的号码特征和联系方式
const content = item.content || ''
const featuresMatch = content.match(/号码特征[:\s]*(.+?)(?:\n|$)/)