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,
|
TagLabel,
|
||||||
Wrap,
|
Wrap,
|
||||||
WrapItem,
|
WrapItem,
|
||||||
IconButton,
|
|
||||||
useColorModeValue,
|
useColorModeValue,
|
||||||
useToast,
|
useToast,
|
||||||
Tooltip,
|
Tooltip,
|
||||||
@@ -40,7 +39,7 @@ import {
|
|||||||
AlertIcon,
|
AlertIcon,
|
||||||
} from '@chakra-ui/react';
|
} from '@chakra-ui/react';
|
||||||
import { formatTooltipText, getFormattedTextProps } from '../../../utils/textUtils';
|
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 }) => {
|
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>所属板块</Th>
|
<Th>所属板块</Th>
|
||||||
<Th>操作</Th>
|
<Th>K线</Th>
|
||||||
</Tr>
|
</Tr>
|
||||||
</Thead>
|
</Thead>
|
||||||
<Tbody>
|
<Tbody>
|
||||||
@@ -344,25 +343,16 @@ export const SearchResultsModal = ({ isOpen, onClose, searchResults, onStockClic
|
|||||||
</Wrap>
|
</Wrap>
|
||||||
</Td>
|
</Td>
|
||||||
<Td>
|
<Td>
|
||||||
<HStack spacing={1}>
|
<Button
|
||||||
<Tooltip label="查看详情">
|
size="sm"
|
||||||
<IconButton
|
colorScheme="blue"
|
||||||
icon={<ViewIcon />}
|
onClick={() => {
|
||||||
size="sm"
|
// 跳转到公司详情页面查看K线
|
||||||
variant="ghost"
|
window.open(`https://valuefrontier.cn/company?scode=${stock.scode}`, '_blank');
|
||||||
colorScheme="blue"
|
}}
|
||||||
onClick={() => onStockClick(stock)}
|
>
|
||||||
/>
|
查看
|
||||||
</Tooltip>
|
</Button>
|
||||||
<Tooltip label="查看K线">
|
|
||||||
<IconButton
|
|
||||||
icon={<ExternalLinkIcon />}
|
|
||||||
size="sm"
|
|
||||||
variant="ghost"
|
|
||||||
colorScheme="green"
|
|
||||||
/>
|
|
||||||
</Tooltip>
|
|
||||||
</HStack>
|
|
||||||
</Td>
|
</Td>
|
||||||
</Tr>
|
</Tr>
|
||||||
))}
|
))}
|
||||||
|
|||||||
Reference in New Issue
Block a user