Commit 58883654 authored by wuhao's avatar wuhao 🎯

aad

parent 3bf852e7
Pipeline #6462 passed with stages
in 8 minutes and 54 seconds
import DraggableDialog from "@/components/DraggableDialog";
import InitForm from "@/components/InitForm";
import { doFetch } from "@/utils/doFetch";
import DownloadIcon from "@mui/icons-material/Download";
import SettingsIcon from "@mui/icons-material/Settings";
import {
Box,
Divider,
......@@ -9,17 +11,18 @@ import {
MenuItem,
Popover,
Stack,
Tooltip,
Typography,
} from "@mui/material";
import { useModel, useNavigate } from "@umijs/max";
import { useRequest } from "ahooks";
import { message } from "antd";
import AES from "crypto-js/aes";
import Utf8 from "crypto-js/enc-utf8";
import ECB from "crypto-js/mode-ecb";
import Pkcs7 from "crypto-js/pad-pkcs7";
import dayjs from "dayjs";
import { useState } from "react";
import { message } from 'antd';
// ----------------------------------------------------------------------
......@@ -189,6 +192,19 @@ export default function AccountPopover() {
}}
></InitForm>
</DraggableDialog>
<Tooltip title="下载实训软件">
<IconButton
onClick={() => {
window.open(
"https://ng-website.oss-cn-hangzhou.aliyuncs.com/2023/12/14/17352281525333565448s5Da5.exe"
);
}}
>
<DownloadIcon style={{ color: "#3E88DF" }}></DownloadIcon>
</IconButton>
</Tooltip>
<IconButton onClick={handleOpen}>
<SettingsIcon></SettingsIcon>
</IconButton>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment