From 180d8f95cdd100e311ab9ad00ce7c7983a986bab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BA=9E=E4=B8=9C=E6=97=AD?= <850374051@qq.com> Date: Thu, 21 Dec 2023 09:22:19 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8D=A3=E6=88=90=E4=BA=A7=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 9 +- static/css/announcement/announcement.css | 124 +++++++ static/css/bidding/bidding.css | 15 +- static/css/index.css | 34 +- static/css/listingItems/items.css | 112 ++++++- static/images/icon_card_01.png | Bin 0 -> 501 bytes static/images/icon_card_02.png | Bin 0 -> 505 bytes static/images/icon_list_01.png | Bin 0 -> 428 bytes static/images/icon_list_02.png | Bin 0 -> 429 bytes static/js/common/main.js | 8 +- .../announcementList/announcementList.js | 30 +- static/js/project/bidding/biddingList.js | 2 +- static/js/project/listingItems/itemsList.js | 21 +- view/announcement/announcement.html | 111 +++---- view/announcement/announcementNew.html | 204 ++++++++++++ view/bidding/biddingList.html | 89 ++--- view/listingItems/itemsList.html | 141 ++++---- view/listingItems/itemsNeedsList.html | 303 ++++++++++++++++++ 18 files changed, 964 insertions(+), 239 deletions(-) create mode 100644 static/images/icon_card_01.png create mode 100644 static/images/icon_card_02.png create mode 100644 static/images/icon_list_01.png create mode 100644 static/images/icon_list_02.png create mode 100644 view/announcement/announcementNew.html create mode 100644 view/listingItems/itemsNeedsList.html diff --git a/index.html b/index.html index dd7fc79..156f06b 100644 --- a/index.html +++ b/index.html @@ -366,7 +366,14 @@ {{value.timeType}} - + + {{if value.projectShowStatus == '正在报名'}}{{/if}} + {{if value.projectShowStatus == '正在竞价'}}{{/if}} + {{if value.projectShowStatus == '等待竞价'}}{{/if}} + {{if value.projectShowStatus == '等待成交'}}{{/if}} + {{if value.projectShowStatus == '已经成交'}}{{/if}} + {{if value.projectShowStatus == '项目公示'}}{{/if}} + {{/each}} diff --git a/static/css/announcement/announcement.css b/static/css/announcement/announcement.css index db5e841..8785d94 100644 --- a/static/css/announcement/announcement.css +++ b/static/css/announcement/announcement.css @@ -31,3 +31,127 @@ table{ .titIndex i{ padding: 0px 10px; } + +.newList{ + padding: 0; + margin-top: 0; +} + +.newList ul li{ + display: flex; + align-items: center; + justify-content: space-between; + cursor: pointer; + padding: 15px 0; +} + +.newList #announcementInformationContent li p:nth-child(1){ + width: 25%; + padding-left: 15px; +} + +.newList #announcementInformationContent li p:nth-child(2){ + width: 35%; + text-align: left; +} + +.newList #announcementInformationContent li p:nth-child(3){ + width: 20%; + text-align: right; +} + +.newList #announcementInformationContent li p:nth-child(4){ + width: 20%; + text-align: center; +} + +.newList #attestationInformationContent li p:nth-child(1){ + width: 25%; + padding-left: 15px; +} + +.newList #attestationInformationContent li p:nth-child(2){ + width: 35%; + text-align: left; +} + +.newList #attestationInformationContent li p:nth-child(3){ + width: 20%; + text-align: right; +} + +.newList #attestationInformationContent li p:nth-child(4){ + width: 20%; + text-align: center; +} + +.newHead,.newHead_attestation{ + background: #f1f1f1; + padding: 15px 0; + display: flex; + align-items: center; + justify-content: space-between; +} + +.newHead p,.newHead_attestation p{ + font-size: 16px; + font-weight: bold; +} + +.newHead p:nth-child(1){ + width: 25%; + padding-left: 15px; +} + +.newHead p:nth-child(2){ + width: 35%; + text-align: left; +} + +.newHead p:nth-child(3){ + width: 20%; + text-align: right; +} + +.newHead p:nth-child(4){ + width: 20%; + text-align: center; +} + +.newHead_attestation p:nth-child(1){ + width: 25%; + padding-left: 15px; +} + +.newHead_attestation p:nth-child(2){ + width: 35%; + text-align: left; +} + +.newHead_attestation p:nth-child(3){ + width: 20%; + text-align: right; +} + +.newHead_attestation p:nth-child(4){ + width: 20%; + text-align: center; +} + +.breadcrum { + background: #f8f8f8; + height: auto; + padding: 25px; + margin-bottom: 25px; +} + +.breadcrum p{ + color: #535252; + margin-bottom: 25px; +} + +.search_main{ + display: flex; + justify-content: space-between; + align-items: center; +} diff --git a/static/css/bidding/bidding.css b/static/css/bidding/bidding.css index 9e6be05..0404a9a 100644 --- a/static/css/bidding/bidding.css +++ b/static/css/bidding/bidding.css @@ -3,8 +3,9 @@ } .tableList input[type='button'] { - border: 1px solid #a6a6a6; - border-radius: 20px; + background: #cadbf1; + color: #1269d3; + border: none; padding: 4px 10px; } @@ -12,4 +13,12 @@ color: #FFFFFF !important; border-color: var(--color) !important; background-color: var(--color) !important; -} \ No newline at end of file +} + +.tableList table tr:nth-child(odd){ + background: transparent!important; +} + +.tableList table tr td{ + border-bottom: 1px dashed #d0d0d0; +} diff --git a/static/css/index.css b/static/css/index.css index 32d01cc..204851c 100644 --- a/static/css/index.css +++ b/static/css/index.css @@ -132,17 +132,17 @@ } .searchClass { - border: 2px solid var(--color)!important; - border-radius: 20px; - background: transparent; - padding: 6px 10px; + border: 1px solid #e0e0e0!important; + background: #ffffff; + padding: 0px 10px; width: 100%; + height: 40px; } .searchDiv { position: relative; width: 270px; - transform: translate(0, 3px); + /*transform: translate(0, 3px);*/ } .searchButton { @@ -150,10 +150,10 @@ color: #ffffff !important; width: 65px !important; border: 2px solid var(--color); - border-radius: 25px; padding: 4px 0px; position: absolute; right: 0; + height: 40px; } /*导航栏*/ @@ -452,6 +452,10 @@ height: 41px; } +.centerLeft .centerLeft-center .tableList table tr td{ + border-bottom: 1px dashed #e3e3e3; +} + .centerLeft-center .centerleft-center-tit01 { color: #626262; margin: 24px 0px 14px 0px; @@ -998,12 +1002,12 @@ select { cursor: pointer; } -.now-row td { - color: #d21313!important; +.now-row { + color: #ff7b2b!important; } -.notStart-row td { - color: #007b76!important; +.notStart-row { + color: #1269d3!important; } .tableType { @@ -1024,11 +1028,11 @@ select { } .tableType p:nth-child(1) { - color: #007b76; + color: #1269d3; } .tableType p:nth-child(2) { - color: #d21313; + color: #ff7b2b; } .tableType p:nth-child(3) { @@ -1036,11 +1040,11 @@ select { } .tableType p:nth-child(1) i { - background-color: #007b76; + background-color: #1269d3; } .tableType p:nth-child(2) i { - background-color: #d21313; + background-color: #ff7b2b; } .tableType p:nth-child(3) i { @@ -1294,7 +1298,7 @@ label input[type="radio"]:checked+span { } .tableList table tr:nth-child(odd) { - background-color: #f6f5f5; + /*background-color: #f6f5f5;*/ } .tableList_top { height: 260px; diff --git a/static/css/listingItems/items.css b/static/css/listingItems/items.css index 69922e2..569b048 100644 --- a/static/css/listingItems/items.css +++ b/static/css/listingItems/items.css @@ -2,8 +2,14 @@ width: 1200px; /* height: 300px; */ margin: auto; - /* background: red; */ - margin-top: 15px; + background: #f8f8f8; + margin-top: 25px; + padding: 25px; +} + +.auction_hall_condition p{ + color: #535252; + margin-bottom: 25px; } .auction_hall_condition table { @@ -22,8 +28,9 @@ .auction_hall_condition table tr .auction_td { background: #F8F8F8; - color: #999999; - width: 122px; + color: #535252; + width: 80px; + text-align: left; } .auction_hall_table_tab { @@ -668,4 +675,99 @@ input::-webkit-inner-spin-button { #timeDown{ font-size: 14px; margin-left: 15px; -} \ No newline at end of file +} + +.centerLeft_center{ + display: flex; + margin-top: 25px; +} + +.centerLeft_center img{ + display: block; + width: 300px; + height: 174px; + margin-right: 25px; + flex-shrink: 0; +} + +.centerLeft-center-middle-money { + font-size: 14px; + color: #d21313; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 1; + word-break: break-all; + overflow: hidden; +} + +.centerLeft-center-middle-money i{ + font-size: 18px; + color: #d21313; + font-weight: bold; +} + +.centerLeft-center-middle-block{ + display: flex; + justify-content: space-between; + align-items: center; +} + +.centerLeft-center-middle-block .centerLeft-center-middle-tit01{ + font-size: 20px; + font-weight: bold; + color: #333333; + display: flex; + align-items: center; + flex: 1; +} + +.centerLeft-center-middle-block .centerLeft-center-middle-tit01 strong{ + flex: 1; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 1; + word-break: break-all; + overflow: hidden; +} + +.centerLeft-center-middle-block .centerLeft-center-middle-tit01 span{ + font-size: 14px; + border: none; + font-weight: normal; + padding: 2px 6px; + text-align: center; + display: inline-block; +} + +.centerLeft-center-middle-block .centerLeft-center-middle-money i{ + font-size: 28px; +} + +.centerLeft-center-middle-block .centerLeft-center-middle-money{ + line-height: 1; + flex-shrink: 0; +} + +.centerLeft_center .centerLeft-center-middle-ul li p span{ + color: #535252; + font-size: 16px; +} + +.centerLeft_center .centerLeft-center-middle-ul li p{ + color: #535252; + font-size: 16px; +} + +.center_tap{ + display: flex; + justify-content: right; + width: 100%; + padding: 10px 0; + border-bottom: 1px solid #d5d5d5; + margin-top: 15px; +} +.center_tap img{ + display: block; + margin-left: 10px; + cursor: pointer; +} diff --git a/static/images/icon_card_01.png b/static/images/icon_card_01.png new file mode 100644 index 0000000000000000000000000000000000000000..711f2355f7ff16301e895735cea98e47c648bdaf GIT binary patch literal 501 zcmV@(51jAeLegUA)H`-1G-~a1k5P zM+ZGz$EgZuaSpTij3xMqO_;z2e840YGOtRqh$pc!1}E?gJN%7Mw;MA#vo;qiaT^D^ zIq{`|q(mpjLk)9ZG2hKHs)mGa#$J{YSl*Bq``U}-75LVWQ2#uXCH@mtl5DG)i{y0~ z-xZ{-2t|jm3g45ce&&+oZgx(KvftlA(XH&pu2j`e3w*@AOx&73&9!XyaJ|WI@iZ0I zhFmBVJkNL@4+io^@v=%K_giY8$@wW?2P~$(aG-YE&6AMuk3q?_uww97Cr!2UU6$_MPgQh`Y zGm;;f{Fum{(U?FUD{I>oJcG z`k2JY3TJQ@)A))-_=Qni$2xq%JjFyghhbrIUv(YoE&g`?#1%AH-XXhvL!(l-oXN2MKbC=A`RjX@tsQG3s!VOX^%slxFX)s z2p-K)@~pWzmu(*~?m3#-1t-)4WaQu++qL#29s`yF2|e5O&jZT=hkKwGc#+*4$f#sO zX0!m^s#R6>c?6C_HA%u9Eg$=?O7N{#5wv+)&FI4^FdS=vAkq>!2fBbxu{G%gFaS(y z^PIBvjazq|Bj7p_?M9pxU;dGK-U&5&7Bk{^@xDf|MkKD2#GGBPVFZ|p^;+ETCnH~H zzlz

j!262|bulK@LUzKI{U%fHpauiPwOQ!0Z1sp;2HDSoB1)pW1HBwm?ag0loov W9$1WaXx#(=0000CbS9w literal 0 HcmV?d00001 diff --git a/static/images/icon_list_02.png b/static/images/icon_list_02.png new file mode 100644 index 0000000000000000000000000000000000000000..2e164bcfc7b9450f0f210742e1a59e220fcf958b GIT binary patch literal 429 zcmV;e0aE^nP)-*gs#RU}DFbH-;&LEhqeg|;cU^>Up+g~}Sq-C4E`ZV42m~c9l047@bPH`rr+^_~ zT89^vt#94A>zo2NiD + @@ -19,56 +20,9 @@

-
- -
- -
-

Hi,欢迎来到农村产权交易中心

-
- - -
- - - - - - 返回主站 - -