From 26815b133ab6d2f78cfece2b24d942366c41637f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=97=8B?= <2574356905@qq.com> Date: Sun, 24 Nov 2024 15:10:21 +0000 Subject: [PATCH 1/3] 1122 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 王旋 <2574356905@qq.com> --- ...\345\207\273\345\205\263\351\227\255.html" | 63 +++++++ .../css/index.css" | 71 ++++++++ ...\350\241\250\346\241\210\344\276\213.html" | 158 ++++++++++++++++++ 3 files changed, 292 insertions(+) create mode 100644 "20241122 \350\212\202\347\202\271\346\223\215\344\275\234/08.2-\347\202\271\345\207\273\345\205\263\351\227\255.html" create mode 100644 "20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/css/index.css" create mode 100644 "20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/\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/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/08.2-\347\202\271\345\207\273\345\205\263\351\227\255.html" "b/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/08.2-\347\202\271\345\207\273\345\205\263\351\227\255.html" new file mode 100644 index 0000000..216bd2d --- /dev/null +++ "b/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/08.2-\347\202\271\345\207\273\345\205\263\351\227\255.html" @@ -0,0 +1,63 @@ + + + + + + + + Document + + + + +
+ 我是广告1 +
X
+
+
+ 我是广告2 +
X
+
+
+ 我是广告3 +
X
+
+ + + + \ No newline at end of file diff --git "a/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/css/index.css" "b/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/css/index.css" new file mode 100644 index 0000000..cd74974 --- /dev/null +++ "b/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/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/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250\346\241\210\344\276\213.html" "b/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/\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..a9c3077 --- /dev/null +++ "b/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/\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,158 @@ + + + + + + + + 学生信息管理 + + + + +

新增学员

+
+ 姓名: + 年龄: + 性别: + + 薪资: + 就业城市: + + + +
+ + + +

就业榜

+ + + + + + + + + + + + + + + + + +
学号姓名年龄性别薪资就业城市操作
+ + + + + \ No newline at end of file -- Gitee From 4d804e1cc69769554d91f8ffb490cba6d3a56f1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=97=8B?= <2574356905@qq.com> Date: Sun, 24 Nov 2024 15:10:28 +0000 Subject: [PATCH 2/3] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=202024?= =?UTF-8?q?1122=20=E8=8A=82=E7=82=B9=E6=93=8D=E4=BD=9C?= 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" | 63 ------- .../css/index.css" | 71 -------- ...\350\241\250\346\241\210\344\276\213.html" | 158 ------------------ 3 files changed, 292 deletions(-) delete mode 100644 "20241122 \350\212\202\347\202\271\346\223\215\344\275\234/08.2-\347\202\271\345\207\273\345\205\263\351\227\255.html" delete mode 100644 "20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/css/index.css" delete mode 100644 "20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/\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/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/08.2-\347\202\271\345\207\273\345\205\263\351\227\255.html" "b/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/08.2-\347\202\271\345\207\273\345\205\263\351\227\255.html" deleted file mode 100644 index 216bd2d..0000000 --- "a/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/08.2-\347\202\271\345\207\273\345\205\263\351\227\255.html" +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - Document - - - - -
- 我是广告1 -
X
-
-
- 我是广告2 -
X
-
-
- 我是广告3 -
X
-
- - - - \ No newline at end of file diff --git "a/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/css/index.css" "b/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/css/index.css" deleted file mode 100644 index cd74974..0000000 --- "a/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/css/index.css" +++ /dev/null @@ -1,71 +0,0 @@ -* { - 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/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250\346\241\210\344\276\213.html" "b/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250\346\241\210\344\276\213.html" deleted file mode 100644 index a9c3077..0000000 --- "a/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250\346\241\210\344\276\213.html" +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - 学生信息管理 - - - - -

新增学员

-
- 姓名: - 年龄: - 性别: - - 薪资: - 就业城市: - - - -
- - - -

就业榜

- - - - - - - - - - - - - - - - - -
学号姓名年龄性别薪资就业城市操作
- - - - - \ No newline at end of file -- Gitee From 6135f6b47d309360b634304ab8ce8ade886b66d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=97=8B?= <2574356905@qq.com> Date: Sun, 24 Nov 2024 15:11:27 +0000 Subject: [PATCH 3/3] 1122 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 王旋 <2574356905@qq.com> --- ...\345\207\273\345\205\263\351\227\255.html" | 63 +++++++ .../css/index.css" | 71 ++++++++ ...\350\241\250\346\241\210\344\276\213.html" | 158 ++++++++++++++++++ 3 files changed, 292 insertions(+) create mode 100644 "\347\216\213\346\227\213/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/08.2-\347\202\271\345\207\273\345\205\263\351\227\255.html" create mode 100644 "\347\216\213\346\227\213/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/css/index.css" create mode 100644 "\347\216\213\346\227\213/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/\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/\347\216\213\346\227\213/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/08.2-\347\202\271\345\207\273\345\205\263\351\227\255.html" "b/\347\216\213\346\227\213/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/08.2-\347\202\271\345\207\273\345\205\263\351\227\255.html" new file mode 100644 index 0000000..216bd2d --- /dev/null +++ "b/\347\216\213\346\227\213/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/08.2-\347\202\271\345\207\273\345\205\263\351\227\255.html" @@ -0,0 +1,63 @@ + + + + + + + + Document + + + + +
+ 我是广告1 +
X
+
+
+ 我是广告2 +
X
+
+
+ 我是广告3 +
X
+
+ + + + \ No newline at end of file diff --git "a/\347\216\213\346\227\213/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/css/index.css" "b/\347\216\213\346\227\213/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/css/index.css" new file mode 100644 index 0000000..cd74974 --- /dev/null +++ "b/\347\216\213\346\227\213/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/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/\347\216\213\346\227\213/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250\346\241\210\344\276\213.html" "b/\347\216\213\346\227\213/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/\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..a9c3077 --- /dev/null +++ "b/\347\216\213\346\227\213/20241122 \350\212\202\347\202\271\346\223\215\344\275\234/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250/\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,158 @@ + + + + + + + + 学生信息管理 + + + + +

新增学员

+
+ 姓名: + 年龄: + 性别: + + 薪资: + 就业城市: + + + +
+ + + +

就业榜

+ + + + + + + + + + + + + + + + + +
学号姓名年龄性别薪资就业城市操作
+ + + + + \ No newline at end of file -- Gitee