PrintControl.tsx 618 B

123456789101112131415161718192021
  1. import React from 'react';
  2. import { showNotImplemented } from '@/utils/notificationHelper';
  3. const PrintControl: React.FC = () => {
  4. return (
  5. <div className="print-control">
  6. <select>
  7. <option>打印节点1</option>
  8. <option>打印节点2</option>
  9. </select>
  10. <select>
  11. <option>操作尺寸1</option>
  12. <option>操作尺寸2</option>
  13. </select>
  14. <button onClick={() => showNotImplemented('DICOM打印')}>DICOM打印</button>
  15. <button onClick={() => showNotImplemented('本地打印')}>本地打印</button>
  16. </div>
  17. );
  18. };
  19. export default PrintControl;