-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a111980
commit f633cf5
Showing
5 changed files
with
102 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
table { | ||
width: 100%; /* 表格宽度 */ | ||
border-collapse: collapse; /* 边框合并 */ | ||
} | ||
|
||
table, th, td { | ||
border: 1px solid #ddd; /* 给表格和单元格添加边框 */ | ||
} | ||
|
||
th, td { | ||
padding: 8px; /* 内边距 */ | ||
text-align: left; /* 文本左对齐 */ | ||
} | ||
|
||
th { | ||
background-color: #f2f2f2; /* 表头背景色 */ | ||
font-weight: bold; /* 加粗表头文字 */ | ||
} | ||
|
||
tr:nth-child(even) { | ||
background-color: #f9f9f9; /* 隔行变色,提高可读性 */ | ||
} | ||
|
||
tr:hover { | ||
background-color: #f1f1f1; /* 当鼠标悬停在行上时改变背景色 */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,3 +64,8 @@ rl.on("error", (error, info)=>{ | |
}); | ||
|
||
``` | ||
|
||
|
||
## TODO:: | ||
1. 并发数量 | ||
2. appId独有和共享资源 |