client/tests/test.html

28 lines
806 B
HTML
Raw Normal View History

2024-06-07 15:33:03 +08:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Title</title>
<script>
window.addEventListener('load', () => {
setTimeout(() => {
app.setTitle('测试标题')
alert('test')
app.setSize(600, 500, "fixed")
setTimeout(() => {
setTestOK(true)
app.close()
}, 1000)
}, 1000)
})
</script>
</head>
<body>
<img src="logo.png" width="20" onclick="showDialog('', ['No', 'Yes'], [{hint:'aaa',value:111},{hint:'bbb',value:222}]).then(v=>{console.info(v)})"/>
<h1>Hello, world!</h1>
<br/>
<button onclick="app.close()">关闭</button>
</div>
</body>
</html>