This commit is contained in:
parent
a3f183120f
commit
f48a5a5613
|
|
@ -54,7 +54,6 @@ const Home: React.FC = () => {
|
|||
specific: '',
|
||||
})
|
||||
useEffect(() => {
|
||||
console.log(window.electron.getVersion());
|
||||
setUserInfo(user)
|
||||
window.electron.getVersion().then(res => {
|
||||
setVersion(res)
|
||||
|
|
|
|||
|
|
@ -85,13 +85,13 @@ const Meeting: React.FC = () => {
|
|||
active: false,
|
||||
select: false,
|
||||
},
|
||||
{
|
||||
title: '会议监控',
|
||||
icon: ImageUrl.icon48,
|
||||
iconSelect: ImageUrl.icon48Select,
|
||||
active: false,
|
||||
select: false,
|
||||
},
|
||||
// {
|
||||
// title: '会议监控',
|
||||
// icon: ImageUrl.icon48,
|
||||
// iconSelect: ImageUrl.icon48Select,
|
||||
// active: false,
|
||||
// select: false,
|
||||
// },
|
||||
{
|
||||
title: '录制',
|
||||
icon: ImageUrl.icon27,
|
||||
|
|
@ -430,7 +430,6 @@ const Meeting: React.FC = () => {
|
|||
i.forEach((i: any) => {
|
||||
if (i.className === 'ant-notification-notice ant-notification-notice-closable') {
|
||||
i.childNodes.forEach((row: any) => {
|
||||
console.log(row.className);
|
||||
if (row.className === 'ant-notification-notice-close') {
|
||||
row.click()
|
||||
}
|
||||
|
|
@ -448,7 +447,6 @@ const Meeting: React.FC = () => {
|
|||
item.forEach((item: any) => {
|
||||
if (item.className === 'ant-notification-notice ant-notification-notice-closable') {
|
||||
item.childNodes.forEach((row: any) => {
|
||||
console.log(row.className);
|
||||
if (row.className === 'ant-notification-notice-close') {
|
||||
row.click()
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue