From d6c8e549133417bfa6d4f67bccfa1400c192fd5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BA=9E=E4=B8=9C=E6=97=AD?= <850374051@qq.com> Date: Fri, 30 Jul 2021 08:51:48 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=9E=8B=E7=BB=8F=E8=90=A5=E4=B8=BB?= =?UTF-8?q?=E4=BD=93=E5=89=8D=E7=AB=AF=E5=88=87=E5=9B=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 2 +- newBusinessEntities/directories/detail.html | 168 ++++ newBusinessEntities/directories/index.html | 221 +++++ newBusinessEntities/index.html | 805 ++++++++++++++++++ newBusinessEntities/login.html | 67 ++ newBusinessEntities/record/supplyList.html | 203 +++++ newBusinessEntities/record/trainList.html | 164 ++++ newBusinessEntities/release.html | 149 ++++ newBusinessEntities/supply/detail.html | 135 +++ newBusinessEntities/supply/index.html | 368 ++++++++ newBusinessEntities/train/detail.html | 164 ++++ newBusinessEntities/train/index.html | 204 +++++ static/css/index.css | 7 +- static/css/login/login.css | 1 + static/css/login/register.css | 1 + static/css/main.css | 29 +- static/images/newBusinessEntities/banner.jpg | Bin 0 -> 217799 bytes static/images/newBusinessEntities/fail.png | Bin 0 -> 5784 bytes .../images/newBusinessEntities/icon_down.png | Bin 0 -> 1230 bytes static/images/newBusinessEntities/icon_jt.png | Bin 0 -> 1261 bytes .../images/newBusinessEntities/icon_link.png | Bin 0 -> 1362 bytes .../newBusinessEntities/icon_loginName.png | Bin 0 -> 1398 bytes .../newBusinessEntities/icon_notice.png | Bin 0 -> 1392 bytes .../newBusinessEntities/icon_passWord.png | Bin 0 -> 1398 bytes static/images/newBusinessEntities/icon_pc.png | Bin 0 -> 1228 bytes .../images/newBusinessEntities/icon_sms.png | Bin 0 -> 1559 bytes .../newBusinessEntities/icon_supply.png | Bin 0 -> 1348 bytes .../images/newBusinessEntities/icon_tel.png | Bin 0 -> 1256 bytes static/images/newBusinessEntities/img1.jpg | Bin 0 -> 61980 bytes static/images/newBusinessEntities/img2.jpg | Bin 0 -> 36560 bytes static/images/newBusinessEntities/img3.png | Bin 0 -> 63431 bytes static/images/newBusinessEntities/img4.png | Bin 0 -> 26120 bytes static/images/newBusinessEntities/img5.jpg | Bin 0 -> 44634 bytes static/images/newBusinessEntities/img6.jpg | Bin 0 -> 157562 bytes static/images/newBusinessEntities/img7.jpg | Bin 0 -> 12096 bytes static/images/newBusinessEntities/img8.jpg | Bin 0 -> 35175 bytes static/images/newBusinessEntities/jtl.png | Bin 0 -> 6326 bytes static/images/newBusinessEntities/jtr.png | Bin 0 -> 6337 bytes .../images/newBusinessEntities/login_bg.jpg | Bin 0 -> 157928 bytes static/images/newBusinessEntities/new.gif | Bin 0 -> 225 bytes .../images/newBusinessEntities/searchIcon.png | Bin 0 -> 1275 bytes .../images/newBusinessEntities/user_tips.png | Bin 0 -> 1367 bytes static/images/newBusinessEntities/wdl.jpg | Bin 0 -> 2830 bytes .../images/newBusinessEntities/wdl_head.jpg | Bin 0 -> 1709 bytes static/js/newProject/release/index.js | 20 + static/js/project/listingItems/items.js | 25 +- static/js/project/user/index.js | 9 +- static/js/project/user/login.js | 8 +- static/js/project/user/register.js | 2 - static/js/project/user/registerFrom.js | 2 - static/newCss/index.css | 467 ++++++++++ static/newCss/login.css | 77 ++ static/newCss/record.css | 85 ++ static/newCss/release.css | 331 +++++++ static/newCss/supply.css | 320 +++++++ view/listingItems/itemsDetail.html | 8 +- view/login/login.html | 2 +- 57 files changed, 4011 insertions(+), 33 deletions(-) create mode 100644 newBusinessEntities/directories/detail.html create mode 100644 newBusinessEntities/directories/index.html create mode 100644 newBusinessEntities/index.html create mode 100644 newBusinessEntities/login.html create mode 100644 newBusinessEntities/record/supplyList.html create mode 100644 newBusinessEntities/record/trainList.html create mode 100644 newBusinessEntities/release.html create mode 100644 newBusinessEntities/supply/detail.html create mode 100644 newBusinessEntities/supply/index.html create mode 100644 newBusinessEntities/train/detail.html create mode 100644 newBusinessEntities/train/index.html create mode 100644 static/images/newBusinessEntities/banner.jpg create mode 100644 static/images/newBusinessEntities/fail.png create mode 100644 static/images/newBusinessEntities/icon_down.png create mode 100644 static/images/newBusinessEntities/icon_jt.png create mode 100644 static/images/newBusinessEntities/icon_link.png create mode 100644 static/images/newBusinessEntities/icon_loginName.png create mode 100644 static/images/newBusinessEntities/icon_notice.png create mode 100644 static/images/newBusinessEntities/icon_passWord.png create mode 100644 static/images/newBusinessEntities/icon_pc.png create mode 100644 static/images/newBusinessEntities/icon_sms.png create mode 100644 static/images/newBusinessEntities/icon_supply.png create mode 100644 static/images/newBusinessEntities/icon_tel.png create mode 100644 static/images/newBusinessEntities/img1.jpg create mode 100644 static/images/newBusinessEntities/img2.jpg create mode 100644 static/images/newBusinessEntities/img3.png create mode 100644 static/images/newBusinessEntities/img4.png create mode 100644 static/images/newBusinessEntities/img5.jpg create mode 100644 static/images/newBusinessEntities/img6.jpg create mode 100644 static/images/newBusinessEntities/img7.jpg create mode 100644 static/images/newBusinessEntities/img8.jpg create mode 100644 static/images/newBusinessEntities/jtl.png create mode 100644 static/images/newBusinessEntities/jtr.png create mode 100644 static/images/newBusinessEntities/login_bg.jpg create mode 100644 static/images/newBusinessEntities/new.gif create mode 100644 static/images/newBusinessEntities/searchIcon.png create mode 100644 static/images/newBusinessEntities/user_tips.png create mode 100644 static/images/newBusinessEntities/wdl.jpg create mode 100644 static/images/newBusinessEntities/wdl_head.jpg create mode 100644 static/js/newProject/release/index.js create mode 100644 static/newCss/index.css create mode 100644 static/newCss/login.css create mode 100644 static/newCss/record.css create mode 100644 static/newCss/release.css create mode 100644 static/newCss/supply.css diff --git a/index.html b/index.html index 2cf92b2..3ef6ec4 100644 --- a/index.html +++ b/index.html @@ -724,7 +724,7 @@
友情链接
+友情链接