|
@@ -3,6 +3,7 @@ import { Layout, Button, Checkbox, Typography, List } from 'antd';
|
|
|
import { ArrowLeftOutlined } from '@ant-design/icons';
|
|
|
import { useDispatch } from 'react-redux';
|
|
|
import { switchToOperationPanel } from '@/states/patient/worklist/slices/historyPanelSwitchSlice';
|
|
|
+import Icon from '@/components/Icon';
|
|
|
|
|
|
const { Header, Content, Footer } = Layout;
|
|
|
const { Title } = Typography;
|
|
@@ -69,6 +70,16 @@ const SendImagePage = () => {
|
|
|
>
|
|
|
<Button
|
|
|
type="primary"
|
|
|
+ icon={
|
|
|
+ <Icon
|
|
|
+ module="module-output"
|
|
|
+ name="Send"
|
|
|
+ userId="base"
|
|
|
+ theme="default"
|
|
|
+ size="2x"
|
|
|
+ state="normal"
|
|
|
+ />
|
|
|
+ }
|
|
|
style={{ width: '100%', maxWidth: '400px' }}
|
|
|
onClick={() => alert('发送图像')}
|
|
|
>
|