123456789101112131415161718192021 |
- import React from 'react';
- import { showNotImplemented } from '@/utils/notificationHelper';
- const PrintControl: React.FC = () => {
- return (
- <div className="print-control">
- <select>
- <option>打印节点1</option>
- <option>打印节点2</option>
- </select>
- <select>
- <option>操作尺寸1</option>
- <option>操作尺寸2</option>
- </select>
- <button onClick={() => showNotImplemented('DICOM打印')}>DICOM打印</button>
- <button onClick={() => showNotImplemented('本地打印')}>本地打印</button>
- </div>
- );
- };
- export default PrintControl;
|