CaseNotification.jsx 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. import React, {Component} from 'react';
  2. import {Input, Tooltip, Icon, Button} from 'antd';
  3. import './index.css';
  4. class CaseNotification extends Component {
  5. render() {
  6. return (
  7. <div>
  8. <span className='table-title'> Notification Settings</span>
  9. <div className='kind'>
  10. <p><b>Ding Talk</b></p>
  11. <div className='item'>
  12. <p>
  13. <span className='item-title'>
  14. <span>Web hook </span>
  15. <Tooltip placement="top" title='hahahha'>
  16. <Icon type="question-circle"/>
  17. </Tooltip>
  18. </span>
  19. <Input style={{width: 900}}/>
  20. </p>
  21. <p>
  22. <span className='item-title'>
  23. <span>Notification Name </span>
  24. <Tooltip placement="top" title='heheheheh'>
  25. <Icon type="question-circle"/>
  26. </Tooltip>
  27. </span>
  28. <Input style={{width: 300}}/></p>
  29. </div>
  30. </div>
  31. <div className='kind'>
  32. <p><b>QQ</b></p>
  33. <div className='item'>
  34. <p>
  35. <span className='item-title'>
  36. <span>Web hook </span>
  37. <Tooltip placement="top" title='hahahha'>
  38. <Icon type="question-circle"/>
  39. </Tooltip>
  40. </span>
  41. <Input style={{width: 900}}/>
  42. </p>
  43. <p>
  44. <span className='item-title'>
  45. <span>Notification Name </span>
  46. <Tooltip placement="top" title='heheheheh'>
  47. <Icon type="question-circle"/>
  48. </Tooltip>
  49. </span>
  50. <Input style={{width: 300}}/></p>
  51. </div>
  52. </div>
  53. <Button type="primary" onClick={() => {
  54. console.log('hello');
  55. }}>SUBMIT</Button>
  56. </div>
  57. )
  58. }
  59. }
  60. export default CaseNotification;