update pay function
This commit is contained in:
2089
report_zt_api.py
Normal file
2089
report_zt_api.py
Normal file
File diff suppressed because it is too large
Load Diff
@@ -31,7 +31,6 @@ import {
|
||||
TagLabel,
|
||||
Wrap,
|
||||
WrapItem,
|
||||
IconButton,
|
||||
useColorModeValue,
|
||||
useToast,
|
||||
Tooltip,
|
||||
@@ -40,7 +39,7 @@ import {
|
||||
AlertIcon,
|
||||
} from '@chakra-ui/react';
|
||||
import { formatTooltipText, getFormattedTextProps } from '../../../utils/textUtils';
|
||||
import { SearchIcon, CalendarIcon, ViewIcon, ExternalLinkIcon, DownloadIcon } from '@chakra-ui/icons';
|
||||
import { SearchIcon, CalendarIcon, DownloadIcon } from '@chakra-ui/icons';
|
||||
|
||||
// 高级搜索组件
|
||||
export const AdvancedSearch = ({ onSearch, loading }) => {
|
||||
@@ -275,7 +274,7 @@ export const SearchResultsModal = ({ isOpen, onClose, searchResults, onStockClic
|
||||
<Th>连板天数</Th>
|
||||
<Th>涨停原因</Th>
|
||||
<Th>所属板块</Th>
|
||||
<Th>操作</Th>
|
||||
<Th>K线</Th>
|
||||
</Tr>
|
||||
</Thead>
|
||||
<Tbody>
|
||||
@@ -344,25 +343,16 @@ export const SearchResultsModal = ({ isOpen, onClose, searchResults, onStockClic
|
||||
</Wrap>
|
||||
</Td>
|
||||
<Td>
|
||||
<HStack spacing={1}>
|
||||
<Tooltip label="查看详情">
|
||||
<IconButton
|
||||
icon={<ViewIcon />}
|
||||
size="sm"
|
||||
variant="ghost"
|
||||
colorScheme="blue"
|
||||
onClick={() => onStockClick(stock)}
|
||||
/>
|
||||
</Tooltip>
|
||||
<Tooltip label="查看K线">
|
||||
<IconButton
|
||||
icon={<ExternalLinkIcon />}
|
||||
size="sm"
|
||||
variant="ghost"
|
||||
colorScheme="green"
|
||||
/>
|
||||
</Tooltip>
|
||||
</HStack>
|
||||
<Button
|
||||
size="sm"
|
||||
colorScheme="blue"
|
||||
onClick={() => {
|
||||
// 跳转到公司详情页面查看K线
|
||||
window.open(`https://valuefrontier.cn/company?scode=${stock.scode}`, '_blank');
|
||||
}}
|
||||
>
|
||||
查看
|
||||
</Button>
|
||||
</Td>
|
||||
</Tr>
|
||||
))}
|
||||
|
||||
Reference in New Issue
Block a user