申请发言

This commit is contained in:
yj 2024-08-22 15:00:57 +08:00
parent c1fa7762c6
commit e6a771cfc7
1 changed files with 7 additions and 2 deletions

View File

@ -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,