Browse Source

产权交易问题修改

RongCheng
庞东旭 1 year ago
parent
commit
880a4a7cb4
4 changed files with 31 additions and 11 deletions
  1. +5
    -1
      static/css/announcement/announcement.css
  2. +8
    -2
      static/js/project/announcementList/inviteTendersDetail.js
  3. +8
    -8
      view/announcement/attestation.html
  4. +10
    -0
      view/announcement/inviteTendersDetail.html

+ 5
- 1
static/css/announcement/announcement.css View File

@@ -10,6 +10,10 @@ table tr td:first-child{
border-left: 1px solid #e1e1e1;
}

table tr td:nth-child(odd){
color: #777777;
}

table tr:last-child td{
border-bottom: 1px solid #e1e1e1;
}
@@ -25,4 +29,4 @@ table{

.titIndex i{
padding: 0px 10px;
}
}

+ 8
- 2
static/js/project/announcementList/inviteTendersDetail.js View File

@@ -7,6 +7,7 @@ define(['jquery', "template", "Tools", "announApi", "paging", 'swiper'], functio
data: {
//焦点图数据
focusListTop: [],
attachmentList: [],
announcementInformationDetail:'',
},
};
@@ -100,7 +101,12 @@ define(['jquery', "template", "Tools", "announApi", "paging", 'swiper'], functio
module.attachmentQuery = function (data) {
if (data.code == 200) {
var content = data.rows;
module.data.attachmentList = content;
content.forEach(res=>{
if (res.fileType!=1){
module.data.attachmentList.push(res)
}
})
// module.data.attachmentList = content;
var attachmentListData = template('attachmentListData', module.data);
$("#attachmentListContent").html(attachmentListData);
}
@@ -163,4 +169,4 @@ define(['jquery', "template", "Tools", "announApi", "paging", 'swiper'], functio
}

return module;
});
});

+ 8
- 8
view/announcement/attestation.html View File

@@ -139,7 +139,7 @@
<table border="1" cellpadding="0" cellspacing="0" id="announcementInformationContent">
<script id="announcementInformationData" type="text/html">
<tr>
<td colspan="6" style="font-weight:bolder; font-size:16px;">农村产权交易鉴证书</td>
<td colspan="6" style="font-weight:bolder; font-size:16px;color: #000000;">农村产权交易鉴证书</td>
</tr>
<tr>
<td colspan="2">鉴证书编号</td>
@@ -153,8 +153,8 @@
</tr>
<tr>
<td rowspan="3">转出方</td>
<td>所有权人</td>
<td>{{announcementInformationDetail.outName}}</td>
<td style="color: #777777;">所有权人</td>
<td style="color: #000000;">{{announcementInformationDetail.outName}}</td>
<td></td>
<td></td>
</tr>
@@ -172,8 +172,8 @@
</tr>
<tr>
<td rowspan="3">受让方</td>
<td>受让方</td>
<td>{{announcementInformationDetail.inName}}</td>
<td style="color: #777777;">受让方</td>
<td style="color: #000000;">{{announcementInformationDetail.inName}}</td>
<td></td>
<td></td>
</tr>
@@ -195,8 +195,8 @@
<p>内容</p>
<p>及</p>
<p>方式</p></td>
<td>坐落</td>
<td colspan="3">{{announcementInformationDetail.areaName}}</td>
<td style="color: #777777;">坐落</td>
<td style="color: #000000;" colspan="3">{{announcementInformationDetail.areaName}}</td>
</tr>
<tr>
<td style="border-left: none;">标的物情况</td>
@@ -237,7 +237,7 @@
<td colspan="4">{{announcementInformationDetail.jzsRemark}}</td>
</tr>
<tr>
<td colspan="5" style="border-bottom:1">
<td colspan="5" style="color: #000000;padding-right: 50px;">
<p align="right">农村产权交易鉴证书</p>
<p align="right">{{announcementInformationDetail.jzsSignDate}}</p>
</td>


+ 10
- 0
view/announcement/inviteTendersDetail.html View File

@@ -138,6 +138,16 @@
<p class="font16 m-t-15 titIndex"><b style="cursor:pointer;" onclick="history.go(-1)">招标公告</b><i>></i><span>招标详情</span></p>
<table border="1" cellpadding="0" cellspacing="0" id="announcementInformationContent">
<script id="announcementInformationData" type="text/html">
<tr>
<td>项目编号</td>
<td>{{announcementInformationDetail.tenderCode}}</td>
<td>招标评审时间</td>
<td>{{announcementInformationDetail.revieveAt}}</td>
</tr>
<tr>
<td>招标评审地点</td>
<td colspan="3">{{announcementInformationDetail.revieveAddress}}</td>
</tr>
<tr>
<td>招标方名称</td>
<td>{{announcementInformationDetail.tenderName}}</td>


Loading…
Cancel
Save