申请发言
This commit is contained in:
parent
c1fa7762c6
commit
e6a771cfc7
|
|
@ -394,12 +394,17 @@ const Meeting: React.FC = () => {
|
||||||
>接受</Button>
|
>接受</Button>
|
||||||
<Button
|
<Button
|
||||||
type="primary"
|
type="primary"
|
||||||
onClick={() => { }}
|
onClick={(e: any) => {
|
||||||
|
const dom = e.target.offsetParent.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.lastChild;
|
||||||
|
if (dom) {
|
||||||
|
dom.click()
|
||||||
|
}
|
||||||
|
}}
|
||||||
style={{ backgroundColor: '#EC3C3C', marginLeft: '14px' }}
|
style={{ backgroundColor: '#EC3C3C', marginLeft: '14px' }}
|
||||||
>拒绝</Button>
|
>拒绝</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>,
|
</div>,
|
||||||
duration: 3,
|
duration: null,
|
||||||
placement: 'bottomRight',
|
placement: 'bottomRight',
|
||||||
showProgress: true,
|
showProgress: true,
|
||||||
pauseOnHover: false,
|
pauseOnHover: false,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue