mirror of
https://github.com/QYG2297248353/IYUUPlus-Windows.git
synced 2025-12-29 08:01:35 +08:00
feat: 日志的查询与下载
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>运行日志</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>IYUU 日志信息</h1>
|
||||
<pre id="log-content"></pre>
|
||||
|
||||
<script>
|
||||
window.electron.onDisplayLog((logContent) => {
|
||||
document.getElementById('log-content').innerText = logContent;
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user