Browse Source

个人账号管理和ui终端配置跳转的页面

min
Min5203 4 years ago
parent
commit
2525b9681d
  1. BIN
      img/UIdispose.png
  2. BIN
      img/personal.png
  3. 15
      index.html
  4. 18
      toConfigure.HTML
  5. 18
      toIndeividual.html

BIN
img/UIdispose.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
img/personal.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

15
index.html

@ -46,7 +46,6 @@
<button class="bg-blue-500 py-2 px-5 rounded text-white" onclick="alert('hello')">测试组建1</button>
<!-- 示例插件2 id=100-->
<button class="bg-blue-500 py-2 px-5 rounded text-white" onclick="p100.show()">测试组建2</button>
<script>
const p100 = {
name: 'hello tall plugin',
@ -67,23 +66,13 @@
<div class="w-0.5 flex-1 bg-gray-300"></div>
</div>
</div>
<div class="flex-1">
<!-- 定期任务面板-->
<div class="rounded-lg ml-4 bg-white p-3">
<!-- 示例插件1-->
<button class="bg-blue-500 py-2 px-5 rounded text-white" onclick="alert('hello')">测试组建1</button>
<button class="bg-blue-500 py-2 px-5 rounded text-white"><a href="toIndeividual.html">个人账号管理</a></button>
<!-- 示例插件2 id=100-->
<button class="bg-blue-500 py-2 px-5 rounded text-white" onclick="p100.show()">测试组建2</button>
<script>
const p100 = {
name: 'hello tall plugin',
show() {
alert(this.name)
}
}
</script>
<button class="bg-blue-500 py-2 px-5 rounded text-white"><a href="toConfigure.html">终端UI配置</a></button>
</div>
</div>
</div>

18
toConfigure.HTML

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>终端UI配置</title>
<style>
img{
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<img src="/img/UIdispose.png" alt="">
</body>
</html>

18
toIndeividual.html

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>个人账号管理</title>
<style>
img {
width:100%;
height:100%;
}
</style>
</head>
<body>
<img src="/img/personal.png" alt="">
</body>
</html>
Loading…
Cancel
Save