From 71330d80cf7928d8c22bdac63c8de8b53bf89d9d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=8F=B6=E5=8A=9F=E7=85=A7?= <3210416196@qq.com>
Date: Fri, 22 Nov 2024 11:41:09 +0800
Subject: [PATCH 1/2] =?UTF-8?q?=E6=8F=90=E4=BA=A4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...\345\207\273\345\205\263\351\227\255.html" | 103 ++++++++++++++++++
.../css/index.css" | 71 ++++++++++++
...\350\241\250\346\241\210\344\276\213.html" | 78 +++++++++++++
3 files changed, 252 insertions(+)
create mode 100644 "\345\217\266\345\212\237\347\205\247/20241121 JS\346\227\245\346\234\237\345\207\275\346\225\260\344\270\216\350\212\202\347\202\271/08.2-\347\202\271\345\207\273\345\205\263\351\227\255.html"
create mode 100644 "\345\217\266\345\212\237\347\205\247/20241121 JS\346\227\245\346\234\237\345\207\275\346\225\260\344\270\216\350\212\202\347\202\271/css/index.css"
create mode 100644 "\345\217\266\345\212\237\347\205\247/20241121 JS\346\227\245\346\234\237\345\207\275\346\225\260\344\270\216\350\212\202\347\202\271/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250\346\241\210\344\276\213.html"
diff --git "a/\345\217\266\345\212\237\347\205\247/20241121 JS\346\227\245\346\234\237\345\207\275\346\225\260\344\270\216\350\212\202\347\202\271/08.2-\347\202\271\345\207\273\345\205\263\351\227\255.html" "b/\345\217\266\345\212\237\347\205\247/20241121 JS\346\227\245\346\234\237\345\207\275\346\225\260\344\270\216\350\212\202\347\202\271/08.2-\347\202\271\345\207\273\345\205\263\351\227\255.html"
new file mode 100644
index 0000000..4d5162a
--- /dev/null
+++ "b/\345\217\266\345\212\237\347\205\247/20241121 JS\346\227\245\346\234\237\345\207\275\346\225\260\344\270\216\350\212\202\347\202\271/08.2-\347\202\271\345\207\273\345\205\263\351\227\255.html"
@@ -0,0 +1,103 @@
+
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\217\266\345\212\237\347\205\247/20241121 JS\346\227\245\346\234\237\345\207\275\346\225\260\344\270\216\350\212\202\347\202\271/css/index.css" "b/\345\217\266\345\212\237\347\205\247/20241121 JS\346\227\245\346\234\237\345\207\275\346\225\260\344\270\216\350\212\202\347\202\271/css/index.css"
new file mode 100644
index 0000000..bf53770
--- /dev/null
+++ "b/\345\217\266\345\212\237\347\205\247/20241121 JS\346\227\245\346\234\237\345\207\275\346\225\260\344\270\216\350\212\202\347\202\271/css/index.css"
@@ -0,0 +1,71 @@
+* {
+ margin: 0;
+ padding: 0;
+}
+
+a {
+ text-decoration: none;
+ color:#721c24;
+}
+h1 {
+ text-align: center;
+ color:#333;
+ margin: 20px 0;
+
+}
+table {
+ margin:0 auto;
+ width: 800px;
+ border-collapse: collapse;
+ color:#004085;
+}
+th {
+ padding: 10px;
+ background: #cfe5ff;
+
+ font-size: 20px;
+ font-weight: 400;
+}
+td,th {
+ border:1px solid #b8daff;
+}
+td {
+ padding:10px;
+ color:#666;
+ text-align: center;
+ font-size: 16px;
+}
+tbody tr {
+ background: #fff;
+}
+tbody tr:hover {
+ background: #e1ecf8;
+}
+.info {
+ width: 900px;
+ margin: 50px auto;
+ text-align: center;
+}
+.info input, .info select {
+ width: 80px;
+ height: 27px;
+ outline: none;
+ border-radius: 5px;
+ border:1px solid #b8daff;
+ padding-left: 5px;
+ box-sizing: border-box;
+ margin-right: 15px;
+}
+.info button {
+ width: 60px;
+ height: 27px;
+ background-color: #004085;
+ outline: none;
+ border: 0;
+ color: #fff;
+ cursor: pointer;
+ border-radius: 5px;
+}
+.info .age {
+ width: 50px;
+}
\ No newline at end of file
diff --git "a/\345\217\266\345\212\237\347\205\247/20241121 JS\346\227\245\346\234\237\345\207\275\346\225\260\344\270\216\350\212\202\347\202\271/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250\346\241\210\344\276\213.html" "b/\345\217\266\345\212\237\347\205\247/20241121 JS\346\227\245\346\234\237\345\207\275\346\225\260\344\270\216\350\212\202\347\202\271/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250\346\241\210\344\276\213.html"
new file mode 100644
index 0000000..f23fd65
--- /dev/null
+++ "b/\345\217\266\345\212\237\347\205\247/20241121 JS\346\227\245\346\234\237\345\207\275\346\225\260\344\270\216\350\212\202\347\202\271/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250\346\241\210\344\276\213.html"
@@ -0,0 +1,78 @@
+
+
+
+
+
+
+
+ 学生信息管理
+
+
+
+
+ 新增学员
+
+
+
+
+ 就业榜
+
+
+
+ | 学号 |
+ 姓名 |
+ 年龄 |
+ 性别 |
+ 薪资 |
+ 就业城市 |
+ 操作 |
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
--
Gitee
From 8ac239f7dc66c76da01c108ee7630182318f4655 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=82=96=E9=A3=9E=E9=B9=8F?= <2879562915@qq.com>
Date: Fri, 22 Nov 2024 15:22:54 +0800
Subject: [PATCH 2/2] update
---
...\350\241\250\346\241\210\344\276\213.html" | 66 ++++++++++++++++++-
1 file changed, 64 insertions(+), 2 deletions(-)
diff --git "a/\345\217\266\345\212\237\347\205\247/20241121 JS\346\227\245\346\234\237\345\207\275\346\225\260\344\270\216\350\212\202\347\202\271/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250\346\241\210\344\276\213.html" "b/\345\217\266\345\212\237\347\205\247/20241121 JS\346\227\245\346\234\237\345\207\275\346\225\260\344\270\216\350\212\202\347\202\271/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250\346\241\210\344\276\213.html"
index f23fd65..aee9fb1 100644
--- "a/\345\217\266\345\212\237\347\205\247/20241121 JS\346\227\245\346\234\237\345\207\275\346\225\260\344\270\216\350\212\202\347\202\271/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250\346\241\210\344\276\213.html"
+++ "b/\345\217\266\345\212\237\347\205\247/20241121 JS\346\227\245\346\234\237\345\207\275\346\225\260\344\270\216\350\212\202\347\202\271/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250\346\241\210\344\276\213.html"
@@ -64,13 +64,75 @@