Browse Source

产权交易

RongCheng
庞东旭 2 years ago
parent
commit
c82517eda8
3 changed files with 36 additions and 7 deletions
  1. +7
    -1
      static/css/bidding/biddingBigData.css
  2. +26
    -3
      static/js/project/bidding/biddingBigDataDetail.js
  3. +3
    -3
      view/bidding/biddingBigDataDetail.html

+ 7
- 1
static/css/bidding/biddingBigData.css View File

@@ -221,7 +221,7 @@ select{
.topTit_content_left{
display: flex;
justify-content: space-between;
width: 60%;
width: 50%;
align-items: center;
}

@@ -243,6 +243,12 @@ select{
background: #21d2ea;
padding: .5vh 1vw;
border-radius: 5px;
cursor: pointer;
}

.topTit_content_left p:nth-child(3):hover{
color: #ffffff;
background: #ac2925;
}

.topTit_content_center{


+ 26
- 3
static/js/project/bidding/biddingBigDataDetail.js View File

@@ -134,12 +134,35 @@ define(['jquery', "template", "Tools", "biddingApi", "itemsApi"], function ($, t
$('#countType').html('距竞价结束还有')
}else if (nowTime>Date.parse(biddingStopTime)){
//竞价结束
$('#countDown').html('竞价结束')
$('#d0').html('0')
$('#d1').html('0')
$('#d2').html('0')

$('#h0').html('0')
$('#h1').html('0')

$('#m0').html('0')
$('#m1').html('0')

$('#s0').html('0')
$('#s1').html('0')
$('#countType').html('竞价结束')
module.data.biddingTimeType = 2;
}else if (nowTime<Date.parse(biddingStartTime)){
//竞价暂未开始
document.getElementById('countType').innerHTML = '竞价暂未开始...';
$('#countDown').html('暂未开始')
$('#d0').html('0')
$('#d1').html('0')
$('#d2').html('0')

$('#h0').html('0')
$('#h1').html('0')

$('#m0').html('0')
$('#m1').html('0')

$('#s0').html('0')
$('#s1').html('0')
$('#countType').html('暂未开始')
module.data.biddingTimeType = 3;
}



+ 3
- 3
view/bidding/biddingBigDataDetail.html View File

@@ -45,7 +45,7 @@
<div class="topTit_content_left">
<p>当<br/>前<br/>项<br/>目</p>
<p>{{outProjectInformationDetail.projectName}}</p>
<p>终止项目</p>
<!-- <p>终止项目</p>-->
</div>

<div class="topTit_content_center" style="margin-left: auto;">
@@ -63,7 +63,7 @@
<div class="bidding" style="width: 61%;margin: 0;border: 1px solid #0071ff;">
<div class="content_box_right_titBox" style="margin-bottom: 1vh;">
<p>实时出价记录</p>
<p class="content_box_right_titBox_check"><input type="checkbox"/>显示出价人姓名、联系电话</p>
<!-- <p class="content_box_right_titBox_check"><input type="checkbox"/>显示出价人姓名、联系电话</p>-->
</div>
<table width="100%" class="tableHead" style="table-layout: fixed;" >
<tr>
@@ -76,7 +76,7 @@
<div class="tableList" id="tableList" style="height: calc(100vh - 130px - 27vh)!important">
<table width="100%;" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
{{each outProjectInformationDetail.biddinglistInformationDetail as value i}}
<tr class="notStart-row">
<tr>
<td>{{value.userName}}</td>
<td>{{value.userAccount}}</td>
<td>{{value.money}}</td>


Loading…
Cancel
Save