@@ -66,3 +66,15 @@ var jzsSearch = '/transaction/website/jzsSearch'//鉴证公告搜索 | |||
deptId:行政区划部门ID | |||
*/ | |||
var jyqzSearch = '/transaction/website/jyqzSearch'//鉴证公告搜索 | |||
/* | |||
@purl /transaction/website/tender/ | |||
@param | |||
*/ | |||
var tenderDetail = '/transaction/website/tender'//招标公告详情 | |||
/* | |||
@purl /transaction/website/tenderWin | |||
@param | |||
*/ | |||
var tenderWinDetail = '/transaction/website/tenderWin'//中标公告详情 |
@@ -83,3 +83,10 @@ var biddingSubmit = '/transaction/bidding/add'//出价 | |||
id: 主键ID | |||
*/ | |||
var base64Upload = '/common/base64Attach'//上传凭证 | |||
/* | |||
@purl /transaction/website/needProject/ | |||
@param | |||
id: 主键ID | |||
*/ | |||
var needProject = '/transaction/website/needProject/'//需求详情 |
@@ -11,6 +11,10 @@ define(['jquery', "template", "Tools", "announApi", "paging", 'swiper'], functio | |||
announcementInformationList:'', | |||
//鉴证列表 | |||
attestationInformationList:'', | |||
//鉴证列表 | |||
winTheBiddingInformationList:'', | |||
//鉴证列表 | |||
inviteTendersInformationList:'', | |||
//页码 | |||
pageNum: 1, | |||
//页码集合 | |||
@@ -121,7 +125,7 @@ define(['jquery', "template", "Tools", "announApi", "paging", 'swiper'], functio | |||
if (pageCount < 1){ | |||
pageCount = 1; | |||
} | |||
if(module.data.announcementInformationList == ''){ | |||
if(module.data.attestationInformationList == ''){ | |||
// 初始化 分页器 | |||
var page_s1=createPage('.page_s2'); | |||
// 设置分页 | |||
@@ -148,12 +152,12 @@ define(['jquery', "template", "Tools", "announApi", "paging", 'swiper'], functio | |||
if (pageCount < 1){ | |||
pageCount = 1; | |||
} | |||
if(module.data.announcementInformationList == ''){ | |||
if(module.data.inviteTendersInformationList == ''){ | |||
// 初始化 分页器 | |||
var page_s1=createPage('.page_s3'); | |||
// 设置分页 | |||
setPage(page_s1,{ | |||
pageTotal: data.total, // 数据总条数 | |||
pageTotal: data.toqtal, // 数据总条数 | |||
pageSize: module.data.pageSize, // 每页显示条数 | |||
pageCurrent: 1, // 当前页 | |||
maxBtnNum: 5, // 最多按钮个数 (最少5个) | |||
@@ -175,7 +179,7 @@ define(['jquery', "template", "Tools", "announApi", "paging", 'swiper'], functio | |||
if (pageCount < 1){ | |||
pageCount = 1; | |||
} | |||
if(module.data.announcementInformationList == ''){ | |||
if(module.data.winTheBiddingInformationList == ''){ | |||
// 初始化 分页器 | |||
var page_s1=createPage('.page_s4'); | |||
// 设置分页 | |||
@@ -0,0 +1,131 @@ | |||
/** | |||
* Created by Administrator on 2021/4/5. | |||
*/ | |||
define(['jquery', "template", "Tools", "announApi", "paging", 'swiper'], function ($, template, Tools ) { | |||
//数据存储 | |||
var module = { | |||
data: { | |||
//焦点图数据 | |||
focusListTop: [], | |||
announcementInformationDetail:'', | |||
}, | |||
}; | |||
var tools = new Tools(); | |||
module.init = function (page) { | |||
//获取焦点图信息 | |||
tools.doGet(websitePicture, {picType:1,status:0,orderByColumn:'picSort',isAsc:'desc'}, module.focusNewsTop , true); | |||
//底部友情链接 | |||
tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); | |||
//鉴证公告 | |||
tools.doGet(tenderDetail+'/'+getQueryVariable('id'), {}, module.announInformation,true); | |||
//网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
tools.getWebConfig(); | |||
}; | |||
//焦点图数据 | |||
module.focusNewsTop = function (data) { | |||
if (data.code == 200) { | |||
module.data.focusListTop = data.data; | |||
var bannerFocusDataTop = template('bannerFocusDataTop', module.data); | |||
$("#bannerFocusTopContent").html(bannerFocusDataTop); | |||
new Swiper('#bannerFocusWrapTop', { | |||
paginationClickable: true, | |||
autoplay : 4000, | |||
loop:true | |||
}) | |||
} | |||
} | |||
//获取地址栏参数 | |||
function getQueryVariable(variable){ | |||
var query = window.location.search.substring(1); | |||
var vars = query.split("&"); | |||
for (var i=0;i<vars.length;i++) { | |||
var pair = vars[i].split("="); | |||
if(pair[0] == variable){return pair[1];} | |||
} | |||
return(false); | |||
} | |||
//底部友情链接 | |||
module.bottomFriendsLinks = function (data) { | |||
if (data.code == 200) { | |||
var content = data.data; | |||
//console.log(content) | |||
module.data.friendsLinksList = content; | |||
var friendsLinksData = template('friendsLinksData', module.data); | |||
$("#friendsLinksContent").html(friendsLinksData); | |||
} | |||
} | |||
//项目公告数据 | |||
module.announInformation = function (data) { | |||
if (data.code == 200) { | |||
//console.log(data) | |||
var content = data.data; | |||
module.data.announcementInformationDetail = content; | |||
var announcementInformationData = template('announcementInformationData', module.data); | |||
$("#announcementInformationContent").html(announcementInformationData); | |||
} | |||
} | |||
//流转方向 | |||
module.circulationDictionaries = function (data) { | |||
if (data.code == 200) { | |||
var content = data.data; | |||
var rollout = content[(module.data.announcementInformationDetail.rollout-1)].dictLabel; | |||
module.data.announcementInformationDetail.rollout = rollout; | |||
var announcementInformationData = template('announcementInformationData', module.data); | |||
$("#announcementInformationContent").html(announcementInformationData); | |||
} | |||
} | |||
//公司性质 | |||
module.companyDictionaries = function (data) { | |||
if (data.code == 200) { | |||
var content = data.data; | |||
var companyNature = content[(module.data.announcementInformationDetail.companyNature-1)].dictLabel; | |||
module.data.announcementInformationDetail.companyNature = companyNature; | |||
var announcementInformationData = template('announcementInformationData', module.data); | |||
$("#announcementInformationContent").html(announcementInformationData); | |||
} | |||
} | |||
//交易方式 | |||
module.transactionDictionaries = function (data) { | |||
if (data.code == 200) { | |||
var content = data.data; | |||
var dealType = content[(module.data.announcementInformationDetail.dealType-1)].dictLabel; | |||
module.data.announcementInformationDetail.dealType = dealType; | |||
var announcementInformationData = template('announcementInformationData', module.data); | |||
$("#announcementInformationContent").html(announcementInformationData); | |||
} | |||
} | |||
//面积单位 | |||
module.areaDictionaries = function (data) { | |||
if (data.code == 200) { | |||
var content = data.data; | |||
var allCountUnit = content[(module.data.announcementInformationDetail.allCountUnit-1)].dictLabel; | |||
module.data.announcementInformationDetail.allCountUnit = allCountUnit; | |||
var announcementInformationData = template('announcementInformationData', module.data); | |||
$("#announcementInformationContent").html(announcementInformationData); | |||
} | |||
} | |||
//成交价格单位 | |||
module.unitDictionaries = function (data) { | |||
if (data.code == 200) { | |||
var content = data.data; | |||
var unit = content[(module.data.announcementInformationDetail.unit-1)].dictLabel; | |||
module.data.announcementInformationDetail.unit = unit; | |||
var announcementInformationData = template('announcementInformationData', module.data); | |||
$("#announcementInformationContent").html(announcementInformationData); | |||
} | |||
} | |||
return module; | |||
}); |
@@ -0,0 +1,131 @@ | |||
/** | |||
* Created by Administrator on 2021/4/5. | |||
*/ | |||
define(['jquery', "template", "Tools", "announApi", "paging", 'swiper'], function ($, template, Tools ) { | |||
//数据存储 | |||
var module = { | |||
data: { | |||
//焦点图数据 | |||
focusListTop: [], | |||
announcementInformationDetail:'', | |||
}, | |||
}; | |||
var tools = new Tools(); | |||
module.init = function (page) { | |||
//获取焦点图信息 | |||
tools.doGet(websitePicture, {picType:1,status:0,orderByColumn:'picSort',isAsc:'desc'}, module.focusNewsTop , true); | |||
//底部友情链接 | |||
tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); | |||
//鉴证公告 | |||
tools.doGet(tenderWinDetail+'/'+getQueryVariable('id'), {}, module.announInformation,true); | |||
//网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
tools.getWebConfig(); | |||
}; | |||
//焦点图数据 | |||
module.focusNewsTop = function (data) { | |||
if (data.code == 200) { | |||
module.data.focusListTop = data.data; | |||
var bannerFocusDataTop = template('bannerFocusDataTop', module.data); | |||
$("#bannerFocusTopContent").html(bannerFocusDataTop); | |||
new Swiper('#bannerFocusWrapTop', { | |||
paginationClickable: true, | |||
autoplay : 4000, | |||
loop:true | |||
}) | |||
} | |||
} | |||
//获取地址栏参数 | |||
function getQueryVariable(variable){ | |||
var query = window.location.search.substring(1); | |||
var vars = query.split("&"); | |||
for (var i=0;i<vars.length;i++) { | |||
var pair = vars[i].split("="); | |||
if(pair[0] == variable){return pair[1];} | |||
} | |||
return(false); | |||
} | |||
//底部友情链接 | |||
module.bottomFriendsLinks = function (data) { | |||
if (data.code == 200) { | |||
var content = data.data; | |||
//console.log(content) | |||
module.data.friendsLinksList = content; | |||
var friendsLinksData = template('friendsLinksData', module.data); | |||
$("#friendsLinksContent").html(friendsLinksData); | |||
} | |||
} | |||
//项目公告数据 | |||
module.announInformation = function (data) { | |||
if (data.code == 200) { | |||
//console.log(data) | |||
var content = data.data; | |||
module.data.announcementInformationDetail = content; | |||
var announcementInformationData = template('announcementInformationData', module.data); | |||
$("#announcementInformationContent").html(announcementInformationData); | |||
} | |||
} | |||
//流转方向 | |||
module.circulationDictionaries = function (data) { | |||
if (data.code == 200) { | |||
var content = data.data; | |||
var rollout = content[(module.data.announcementInformationDetail.rollout-1)].dictLabel; | |||
module.data.announcementInformationDetail.rollout = rollout; | |||
var announcementInformationData = template('announcementInformationData', module.data); | |||
$("#announcementInformationContent").html(announcementInformationData); | |||
} | |||
} | |||
//公司性质 | |||
module.companyDictionaries = function (data) { | |||
if (data.code == 200) { | |||
var content = data.data; | |||
var companyNature = content[(module.data.announcementInformationDetail.companyNature-1)].dictLabel; | |||
module.data.announcementInformationDetail.companyNature = companyNature; | |||
var announcementInformationData = template('announcementInformationData', module.data); | |||
$("#announcementInformationContent").html(announcementInformationData); | |||
} | |||
} | |||
//交易方式 | |||
module.transactionDictionaries = function (data) { | |||
if (data.code == 200) { | |||
var content = data.data; | |||
var dealType = content[(module.data.announcementInformationDetail.dealType-1)].dictLabel; | |||
module.data.announcementInformationDetail.dealType = dealType; | |||
var announcementInformationData = template('announcementInformationData', module.data); | |||
$("#announcementInformationContent").html(announcementInformationData); | |||
} | |||
} | |||
//面积单位 | |||
module.areaDictionaries = function (data) { | |||
if (data.code == 200) { | |||
var content = data.data; | |||
var allCountUnit = content[(module.data.announcementInformationDetail.allCountUnit-1)].dictLabel; | |||
module.data.announcementInformationDetail.allCountUnit = allCountUnit; | |||
var announcementInformationData = template('announcementInformationData', module.data); | |||
$("#announcementInformationContent").html(announcementInformationData); | |||
} | |||
} | |||
//成交价格单位 | |||
module.unitDictionaries = function (data) { | |||
if (data.code == 200) { | |||
var content = data.data; | |||
var unit = content[(module.data.announcementInformationDetail.unit-1)].dictLabel; | |||
module.data.announcementInformationDetail.unit = unit; | |||
var announcementInformationData = template('announcementInformationData', module.data); | |||
$("#announcementInformationContent").html(announcementInformationData); | |||
} | |||
} | |||
return module; | |||
}); |
@@ -379,6 +379,10 @@ define(['jquery', "template", "Tools", "itemsApi", "paging", 'dateTime', 'swiper | |||
tools.skip('itemsDetail.html?id='+id); | |||
} | |||
goNeedsDetail = function (id) { | |||
tools.skip('itemsNeedsDetail.html?id='+id); | |||
} | |||
tabList = function (id) { | |||
document.getElementById('gyxm').style.display = 'none'; | |||
document.getElementById('xqxm').style.display = 'none'; | |||
@@ -0,0 +1,117 @@ | |||
/** | |||
* Created by Administrator on 2021/4/5. | |||
*/ | |||
define(['jquery', "template", "Tools", "itemsApi", "paging", 'swiper'], function ($, template, Tools ) { | |||
//数据存储 | |||
var module = { | |||
data: { | |||
//焦点图数据 | |||
focusListTop: [], | |||
announcementInformationDetail:'', | |||
}, | |||
}; | |||
var tools = new Tools(); | |||
module.init = function (page) { | |||
//获取焦点图信息 | |||
tools.doGet(websitePicture, {picType:1,status:0,orderByColumn:'picSort',isAsc:'desc'}, module.focusNewsTop , true); | |||
//成交公告 | |||
tools.doGet(needProject+'/'+getQueryVariable('id'), {translate_dict:1}, module.announInformation,true); | |||
//网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
tools.getWebConfig(); | |||
}; | |||
//焦点图数据 | |||
module.focusNewsTop = function (data) { | |||
if (data.code == 200) { | |||
module.data.focusListTop = data.data; | |||
var bannerFocusDataTop = template('bannerFocusDataTop', module.data); | |||
$("#bannerFocusTopContent").html(bannerFocusDataTop); | |||
new Swiper('#bannerFocusWrapTop', { | |||
paginationClickable: true, | |||
autoplay : 4000, | |||
loop:true | |||
}) | |||
} | |||
} | |||
//底部友情链接 | |||
module.bottomFriendsLinks = function (data) { | |||
if (data.code == 200) { | |||
var content = data.data; | |||
//console.log(content) | |||
module.data.friendsLinksList = content; | |||
var friendsLinksData = template('friendsLinksData', module.data); | |||
$("#friendsLinksContent").html(friendsLinksData); | |||
} | |||
} | |||
//获取地址栏参数 | |||
function getQueryVariable(variable){ | |||
var query = window.location.search.substring(1); | |||
var vars = query.split("&"); | |||
for (var i=0;i<vars.length;i++) { | |||
var pair = vars[i].split("="); | |||
if(pair[0] == variable){return pair[1];} | |||
} | |||
return(false); | |||
} | |||
//项目公告数据 | |||
module.announInformation = function (data) { | |||
if (data.code == 200) { | |||
//console.log(data) | |||
var content = data.data; | |||
module.data.announcementInformationDetail = content; | |||
var announcementInformationData = template('announcementInformationData', module.data); | |||
$("#announcementInformationContent").html(announcementInformationData); | |||
} | |||
} | |||
//流转方向 | |||
module.circulationDictionaries = function (data) { | |||
if (data.code == 200) { | |||
var content = data.data; | |||
var rollout = content[(module.data.announcementInformationDetail.rollout-1)].dictLabel; | |||
module.data.announcementInformationDetail.rollout = rollout; | |||
var announcementInformationData = template('announcementInformationData', module.data); | |||
$("#announcementInformationContent").html(announcementInformationData); | |||
} | |||
} | |||
//交易方式 | |||
module.transactionDictionaries = function (data) { | |||
if (data.code == 200) { | |||
var content = data.data; | |||
//console.log(content) | |||
var dealType = content[(module.data.announcementInformationDetail.dealType-1)].dictLabel; | |||
module.data.announcementInformationDetail.dealType = dealType; | |||
var announcementInformationData = template('announcementInformationData', module.data); | |||
$("#announcementInformationContent").html(announcementInformationData); | |||
} | |||
} | |||
//面积单位 | |||
module.areaDictionaries = function (data) { | |||
if (data.code == 200) { | |||
var content = data.data; | |||
var allCountUnit = content[(module.data.announcementInformationDetail.allCountUnit-1)].dictLabel; | |||
module.data.announcementInformationDetail.allCountUnit = allCountUnit; | |||
var announcementInformationData = template('announcementInformationData', module.data); | |||
$("#announcementInformationContent").html(announcementInformationData); | |||
} | |||
} | |||
//成交价格单位 | |||
module.unitDictionaries = function (data) { | |||
if (data.code == 200) { | |||
var content = data.data; | |||
var unit = content[(module.data.announcementInformationDetail.unit-1)].dictLabel; | |||
module.data.announcementInformationDetail.unit = unit; | |||
var announcementInformationData = template('announcementInformationData', module.data); | |||
$("#announcementInformationContent").html(announcementInformationData); | |||
} | |||
} | |||
return module; | |||
}); |
@@ -177,10 +177,10 @@ | |||
<script id="inviteTendersInformationData" type="text/html"> | |||
{{each inviteTendersInformationList as value i}} | |||
<li> | |||
<a href="attestation.html?id={{value.id}}" class="fl"><i class="sanjiao-right"></i>{{# value.projectName}}</a> | |||
<p class="fr">{{# value.jzsSignDate}}</p> | |||
<a href="inviteTendersDetail.html?id={{value.id}}" class="fl"><i class="sanjiao-right"></i>{{# value.projectName}}</a> | |||
<p class="fr">{{# value.logintime}}</p> | |||
<div class="clear"></div> | |||
<p class="m-t-5">项目编号:{{# value.projectCode}}</p> | |||
<p class="m-t-5">招标方:{{# value.tenderName}}</p> | |||
</li> | |||
{{/each}} | |||
</script> | |||
@@ -190,7 +190,7 @@ | |||
<script id="winTheBiddingInformationData" type="text/html"> | |||
{{each winTheBiddingInformationList as value i}} | |||
<li> | |||
<a href="attestation.html?id={{value.id}}" class="fl"><i class="sanjiao-right"></i>{{# value.projectName}}</a> | |||
<a href="winTheBiddingDetail.html?id={{value.id}}" class="fl"><i class="sanjiao-right"></i>{{# value.projectName}}</a> | |||
<p class="fr">{{# value.jzsSignDate}}</p> | |||
<div class="clear"></div> | |||
<p class="m-t-5">项目编号:{{# value.projectCode}}</p> | |||
@@ -127,7 +127,7 @@ | |||
<li><a href="../../index.html">首页</a></li> | |||
<li><a href="../listingItems/itemsList.html">挂牌项目</a></li> | |||
<li><a href="../bidding/biddingList.html">竞价大厅</a></li> | |||
<li class="active"><a href="../announcement/announcement.html">项目公告</a></li> | |||
<li class="active"><a href="../announcement/announcement.html">公示公告</a></li> | |||
<li><a href="../demand/demand.html">个人供求</a></li> | |||
<li><a href="../new/newList.html">新闻资讯</a></li> | |||
<li><a href="../policy/policy.html">政策法规</a></li> | |||
@@ -127,7 +127,7 @@ | |||
<li><a href="../../index.html">首页</a></li> | |||
<li><a href="../listingItems/itemsList.html">挂牌项目</a></li> | |||
<li><a href="../bidding/biddingList.html">竞价大厅</a></li> | |||
<li class="active"><a href="../announcement/announcement.html">项目公告</a></li> | |||
<li class="active"><a href="../announcement/announcement.html">公示公告</a></li> | |||
<li><a href="../demand/demand.html">个人供求</a></li> | |||
<li><a href="../new/newList.html">新闻资讯</a></li> | |||
<li><a href="../policy/policy.html">政策法规</a></li> | |||
@@ -0,0 +1,230 @@ | |||
<!DOCTYPE html | |||
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="zh-CN" xml:lang="zh-CN"> | |||
<head> | |||
<meta charset="utf-8"> | |||
<title>农燊高科-鉴证详情</title> | |||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
<meta name="keywords" content="" /> | |||
<meta name="description" cxontent="" /> | |||
<link href="../../static/css/main.css" rel="stylesheet" type="text/css" /> | |||
<link href="../../static/css/index.css" rel="stylesheet" type="text/css" /> | |||
<link href="../../static/css/announcement/announcement.css" rel="stylesheet" type="text/css" /> | |||
</head> | |||
<body> | |||
<div class="main" id="page"> | |||
<div class="swiper-container" id="bannerFocusWrapTop"> | |||
<script id="bannerFocusDataTop" type="text/html"> | |||
{{each focusListTop as value i}} | |||
<div class="swiper-slide"> | |||
<img src="/api{{value.picUrl}}" alt="" width="100%" height="auto"> | |||
</div> | |||
{{/each}} | |||
</script> | |||
<div class="swiper-wrapper" id="bannerFocusTopContent"></div> | |||
<!-- <div class="page-pagination"></div>--> | |||
</div> | |||
<!--顶部Title --> | |||
<div class="bg-f7 txc"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<div class="searchDiv fl"> | |||
<input type="text" placeholder="请输入关键词搜索" id="searchAllTitle" class="searchClass" /> | |||
<input type="button" value="搜索" onclick="searchAllNew()" class="searchButton" /> | |||
</div> | |||
<div class="topTit02 fl" id="dress"> | |||
<img src="../../static/images/icon3.png" alt="" class="fl"/> | |||
<p class="fl">威海市</p> | |||
<div class="clear"></div> | |||
</div> | |||
<a href="javascript:void(0);" class="topTit02 fl">返回主站</a> | |||
<a href="../bidding/biddingBigData.html" class="topTit02 fl">竞价大厅</a> | |||
<div class="dressPc" id="dressList" style="display: none;"> | |||
<ul> | |||
<li> | |||
<p class="fl">文登区</p> | |||
<i class="jiantou"></i> | |||
<div class="clear"></div> | |||
</li> | |||
<li> | |||
<p class="fl">文登区</p> | |||
<i class="jiantou"></i> | |||
<div class="clear"></div> | |||
</li> | |||
<li> | |||
<p class="fl">文登区</p> | |||
<i class="jiantou"></i> | |||
<div class="clear"></div> | |||
</li> | |||
<li> | |||
<p class="fl">文登区</p> | |||
<i class="jiantou"></i> | |||
<div class="clear"></div> | |||
</li> | |||
</ul> | |||
</div> | |||
<div class="fr" id="userLogin" style="display: none;"> | |||
<a href="../login/login.html">请登录</a> | |||
<a href="../login/register.html">免费注册</a> | |||
</div> | |||
<div class="fr" id="userInfo" style="display: none;"> | |||
<img src="../../static/images/user_tips.png" class="block fl m-r-10" style="margin-top: 3px" alt=""/> | |||
<img src="../../static/images/member.png" class="block fl m-r-10" style="margin-top: 4px" alt=""/> | |||
<a href="../user/user.html" class="fl userName" id="userRealName">Sherry</a> | |||
<div class="clear"></div> | |||
</div> | |||
<div class="headHover" id="headHover" style="display: none;"> | |||
<ul> | |||
<li> | |||
<p id="userRealName2">Sherry</p> | |||
</li> | |||
<li class="m-t-5"> | |||
<img src="../../static/images/user_icon1.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的资料</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=demand" class="fl">我的供求</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon3.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=interact" class="fl">我的咨询</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li class="m-b-5"> | |||
<img src="../../static/images/user_icon4.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
<img src="../../static/images/user_icon5.png" class="fl" alt=""/> | |||
<a class="fl">退出登录</a> | |||
<div class="clear"></div> | |||
</li> | |||
</ul> | |||
</div> | |||
<div class="clear"></div> | |||
</div> | |||
</div> | |||
<!--LOGO search --> | |||
<div class="logoSearch w-1200"> | |||
<div class="wid50 logoSearch-div fl"> | |||
<div class="logo" onclick="goIndex()"></div> | |||
<h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
<div class="clear"></div> | |||
</div> | |||
<div class="clear"></div> | |||
</div> | |||
<!--顶部导航栏 --> | |||
<div class="top"> | |||
<ul class="container w-1200"> | |||
<li><a href="../../index.html">首页</a></li> | |||
<li><a href="../listingItems/itemsList.html">挂牌项目</a></li> | |||
<li><a href="../bidding/biddingList.html">竞价大厅</a></li> | |||
<li class="active"><a href="../announcement/announcement.html">公示公告</a></li> | |||
<li><a href="../demand/demand.html">个人供求</a></li> | |||
<li><a href="../new/newList.html">新闻资讯</a></li> | |||
<li><a href="../policy/policy.html">政策法规</a></li> | |||
<li><a href="../interact/interactList.html">互动交流</a></li> | |||
</ul> | |||
</div> | |||
<div class="w-1200"> | |||
<p class="font16 m-t-15 titIndex">招标公告<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.tenderName}}</td> | |||
<td>资金来源</td> | |||
<td>{{announcementInformationDetail.moneySource}}</td> | |||
</tr> | |||
<tr> | |||
<td>招标代理公司</td> | |||
<td>{{announcementInformationDetail.agentName}}</td> | |||
<td>联系人</td> | |||
<td>{{announcementInformationDetail.linkman}}</td> | |||
</tr> | |||
<tr> | |||
<td>联系电话</td> | |||
<td>{{announcementInformationDetail.linkphone}}</td> | |||
<td>联系地址</td> | |||
<td>{{announcementInformationDetail.linkaddress}}</td> | |||
</tr> | |||
<tr> | |||
<td>招标方意见</td> | |||
<td colspan="3">{{announcementInformationDetail.tenderOpinion}}</td> | |||
</tr> | |||
<tr> | |||
<td>代理公司意见</td> | |||
<td colspan="3">{{announcementInformationDetail.agentOpinion}}</td> | |||
</tr> | |||
<tr> | |||
<td>项目名称</td> | |||
<td>{{announcementInformationDetail.projectName}}</td> | |||
<td>建设地点</td> | |||
<td>{{announcementInformationDetail.address}}</td> | |||
</tr> | |||
<tr> | |||
<td>建设工期</td> | |||
<td>{{announcementInformationDetail.timeLimit}}</td> | |||
<td>项目规模</td> | |||
<td>{{announcementInformationDetail.scale}}</td> | |||
</tr> | |||
<tr> | |||
<td>招标内容</td> | |||
<td colspan="3">{{announcementInformationDetail.tenderContent}}</td> | |||
</tr> | |||
<tr> | |||
<td>投标人要求</td> | |||
<td>{{announcementInformationDetail.condition}}</td> | |||
<td>保证金</td> | |||
<td>{{announcementInformationDetail.deposit}}</td> | |||
</tr> | |||
<tr> | |||
<td>招标文件价格(元)</td> | |||
<td>{{announcementInformationDetail.price}}</td> | |||
<td>招标发布日期</td> | |||
<td>{{announcementInformationDetail.logintime}}</td> | |||
</tr> | |||
<tr> | |||
<td>招标书领取开始日期</td> | |||
<td>{{announcementInformationDetail.startTime}}</td> | |||
<td>招标书领取结束日期</td> | |||
<td>{{announcementInformationDetail.stopTime}}</td> | |||
</tr> | |||
</script> | |||
</table> | |||
</div> | |||
<!--底部链接 --> | |||
<div class="bottomLink"> | |||
<div class="w-1200"> | |||
<div class="w-1000 fl"> | |||
<p class="bottomLink-tit"><i class="el-icon-link"></i>友情链接</p> | |||
<script id="friendsLinksData" type="text/html"> | |||
{{each friendsLinksList as value i}} | |||
<a href="{{value.url}}" target="_blank">{{value.name}}</a> | |||
{{/each}} | |||
</script> | |||
<div class="bottomLink-linkList" id="friendsLinksContent"></div> | |||
<p class="ba" id="webConfigRecord"></p> | |||
<p class="ba" id="webConfigAddress"></p> | |||
</div> | |||
<div class="ewm fr"> | |||
<img src="../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||
<p class="ewmtit">关注公众号 了解详情</p> | |||
</div> | |||
<div class="clear"></div> | |||
</div> | |||
</div> | |||
</div> | |||
</body> | |||
<script src="../../static/js/common/require.js" data-main="../../static/js/common/main.js?t=101" id="require-page" | |||
target-module="../../static/js/project/announcementList/inviteTendersDetail.js" defer type="text/javascript"></script> | |||
</html> |
@@ -127,7 +127,7 @@ | |||
<li><a href="../../index.html">首页</a></li> | |||
<li><a href="../listingItems/itemsList.html">挂牌项目</a></li> | |||
<li><a href="../bidding/biddingList.html">竞价大厅</a></li> | |||
<li class="active"><a href="../announcement/announcement.html">项目公告</a></li> | |||
<li class="active"><a href="../announcement/announcement.html">公示公告</a></li> | |||
<li><a href="../demand/demand.html">个人供求</a></li> | |||
<li><a href="../new/newList.html">新闻资讯</a></li> | |||
<li><a href="../policy/policy.html">政策法规</a></li> | |||
@@ -0,0 +1,200 @@ | |||
<!DOCTYPE html | |||
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="zh-CN" xml:lang="zh-CN"> | |||
<head> | |||
<meta charset="utf-8"> | |||
<title>农燊高科-鉴证详情</title> | |||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
<meta name="keywords" content="" /> | |||
<meta name="description" cxontent="" /> | |||
<link href="../../static/css/main.css" rel="stylesheet" type="text/css" /> | |||
<link href="../../static/css/index.css" rel="stylesheet" type="text/css" /> | |||
<link href="../../static/css/announcement/announcement.css" rel="stylesheet" type="text/css" /> | |||
</head> | |||
<body> | |||
<div class="main" id="page"> | |||
<div class="swiper-container" id="bannerFocusWrapTop"> | |||
<script id="bannerFocusDataTop" type="text/html"> | |||
{{each focusListTop as value i}} | |||
<div class="swiper-slide"> | |||
<img src="/api{{value.picUrl}}" alt="" width="100%" height="auto"> | |||
</div> | |||
{{/each}} | |||
</script> | |||
<div class="swiper-wrapper" id="bannerFocusTopContent"></div> | |||
<!-- <div class="page-pagination"></div>--> | |||
</div> | |||
<!--顶部Title --> | |||
<div class="bg-f7 txc"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<div class="searchDiv fl"> | |||
<input type="text" placeholder="请输入关键词搜索" id="searchAllTitle" class="searchClass" /> | |||
<input type="button" value="搜索" onclick="searchAllNew()" class="searchButton" /> | |||
</div> | |||
<div class="topTit02 fl" id="dress"> | |||
<img src="../../static/images/icon3.png" alt="" class="fl"/> | |||
<p class="fl">威海市</p> | |||
<div class="clear"></div> | |||
</div> | |||
<a href="javascript:void(0);" class="topTit02 fl">返回主站</a> | |||
<a href="../bidding/biddingBigData.html" class="topTit02 fl">竞价大厅</a> | |||
<div class="dressPc" id="dressList" style="display: none;"> | |||
<ul> | |||
<li> | |||
<p class="fl">文登区</p> | |||
<i class="jiantou"></i> | |||
<div class="clear"></div> | |||
</li> | |||
<li> | |||
<p class="fl">文登区</p> | |||
<i class="jiantou"></i> | |||
<div class="clear"></div> | |||
</li> | |||
<li> | |||
<p class="fl">文登区</p> | |||
<i class="jiantou"></i> | |||
<div class="clear"></div> | |||
</li> | |||
<li> | |||
<p class="fl">文登区</p> | |||
<i class="jiantou"></i> | |||
<div class="clear"></div> | |||
</li> | |||
</ul> | |||
</div> | |||
<div class="fr" id="userLogin" style="display: none;"> | |||
<a href="../login/login.html">请登录</a> | |||
<a href="../login/register.html">免费注册</a> | |||
</div> | |||
<div class="fr" id="userInfo" style="display: none;"> | |||
<img src="../../static/images/user_tips.png" class="block fl m-r-10" style="margin-top: 3px" alt=""/> | |||
<img src="../../static/images/member.png" class="block fl m-r-10" style="margin-top: 4px" alt=""/> | |||
<a href="../user/user.html" class="fl userName" id="userRealName">Sherry</a> | |||
<div class="clear"></div> | |||
</div> | |||
<div class="headHover" id="headHover" style="display: none;"> | |||
<ul> | |||
<li> | |||
<p id="userRealName2">Sherry</p> | |||
</li> | |||
<li class="m-t-5"> | |||
<img src="../../static/images/user_icon1.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的资料</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=demand" class="fl">我的供求</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon3.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=interact" class="fl">我的咨询</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li class="m-b-5"> | |||
<img src="../../static/images/user_icon4.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
<img src="../../static/images/user_icon5.png" class="fl" alt=""/> | |||
<a class="fl">退出登录</a> | |||
<div class="clear"></div> | |||
</li> | |||
</ul> | |||
</div> | |||
<div class="clear"></div> | |||
</div> | |||
</div> | |||
<!--LOGO search --> | |||
<div class="logoSearch w-1200"> | |||
<div class="wid50 logoSearch-div fl"> | |||
<div class="logo" onclick="goIndex()"></div> | |||
<h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
<div class="clear"></div> | |||
</div> | |||
<div class="clear"></div> | |||
</div> | |||
<!--顶部导航栏 --> | |||
<div class="top"> | |||
<ul class="container w-1200"> | |||
<li><a href="../../index.html">首页</a></li> | |||
<li><a href="../listingItems/itemsList.html">挂牌项目</a></li> | |||
<li><a href="../bidding/biddingList.html">竞价大厅</a></li> | |||
<li class="active"><a href="../announcement/announcement.html">公示公告</a></li> | |||
<li><a href="../demand/demand.html">个人供求</a></li> | |||
<li><a href="../new/newList.html">新闻资讯</a></li> | |||
<li><a href="../policy/policy.html">政策法规</a></li> | |||
<li><a href="../interact/interactList.html">互动交流</a></li> | |||
</ul> | |||
</div> | |||
<div class="w-1200"> | |||
<p class="font16 m-t-15 titIndex">中标公告<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.projectName}}</td> | |||
<td>招标方名称</td> | |||
<td>{{announcementInformationDetail.tenderName}}</td> | |||
</tr> | |||
<tr> | |||
<td>中标人</td> | |||
<td>{{announcementInformationDetail.assignee}}</td> | |||
<td>建设单位</td> | |||
<td>{{announcementInformationDetail.bulidPart}}</td> | |||
</tr> | |||
<tr> | |||
<td>项目负责人</td> | |||
<td>{{announcementInformationDetail.partLinkman}}</td> | |||
<td>中标价格</td> | |||
<td>{{announcementInformationDetail.transactionPrice}}</td> | |||
</tr> | |||
<tr> | |||
<td>中标日期</td> | |||
<td>{{announcementInformationDetail.dealTime}}</td> | |||
<td></td> | |||
<td></td> | |||
</tr> | |||
<tr> | |||
<td>公示开始日期</td> | |||
<td>{{announcementInformationDetail.startTime}}</td> | |||
<td>公示结束日期</td> | |||
<td>{{announcementInformationDetail.stopTime}}</td> | |||
</tr> | |||
</script> | |||
</table> | |||
</div> | |||
<!--底部链接 --> | |||
<div class="bottomLink"> | |||
<div class="w-1200"> | |||
<div class="w-1000 fl"> | |||
<p class="bottomLink-tit"><i class="el-icon-link"></i>友情链接</p> | |||
<script id="friendsLinksData" type="text/html"> | |||
{{each friendsLinksList as value i}} | |||
<a href="{{value.url}}" target="_blank">{{value.name}}</a> | |||
{{/each}} | |||
</script> | |||
<div class="bottomLink-linkList" id="friendsLinksContent"></div> | |||
<p class="ba" id="webConfigRecord"></p> | |||
<p class="ba" id="webConfigAddress"></p> | |||
</div> | |||
<div class="ewm fr"> | |||
<img src="../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||
<p class="ewmtit">关注公众号 了解详情</p> | |||
</div> | |||
<div class="clear"></div> | |||
</div> | |||
</div> | |||
</div> | |||
</body> | |||
<script src="../../static/js/common/require.js" data-main="../../static/js/common/main.js?t=101" id="require-page" | |||
target-module="../../static/js/project/announcementList/winTheBiddingDetail.js" defer type="text/javascript"></script> | |||
</html> |
@@ -303,7 +303,7 @@ | |||
<div class="tableList"> | |||
<script id="ItemsInformationData1" type="text/html"> | |||
{{each itemsInformationList1 as value i}} | |||
<tr onclick="goDetail({{value.id}})"> | |||
<tr onclick="goNeedsDetail({{value.id}})"> | |||
<td title="{{value.projectName}}"> | |||
{{# value.projectName}} | |||
</td> | |||
@@ -0,0 +1,214 @@ | |||
<!DOCTYPE html | |||
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="zh-CN" xml:lang="zh-CN"> | |||
<head> | |||
<meta charset="utf-8"> | |||
<title>农燊高科-项目公告</title> | |||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
<meta name="keywords" content="" /> | |||
<meta name="description" cxontent="" /> | |||
<link href="../../static/css/main.css" rel="stylesheet" type="text/css" /> | |||
<link href="../../static/css/index.css" rel="stylesheet" type="text/css" /> | |||
<link href="../../static/css/announcement/announcement.css" rel="stylesheet" type="text/css" /> | |||
</head> | |||
<body> | |||
<div class="main" id="page"> | |||
<div class="swiper-container" id="bannerFocusWrapTop"> | |||
<script id="bannerFocusDataTop" type="text/html"> | |||
{{each focusListTop as value i}} | |||
<div class="swiper-slide"> | |||
<img src="/api{{value.picUrl}}" alt="" width="100%" height="auto"> | |||
</div> | |||
{{/each}} | |||
</script> | |||
<div class="swiper-wrapper" id="bannerFocusTopContent"></div> | |||
<!-- <div class="page-pagination"></div>--> | |||
</div> | |||
<!--顶部Title --> | |||
<div class="bg-f7 txc"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<div class="searchDiv fl"> | |||
<input type="text" placeholder="请输入关键词搜索" id="searchAllTitle" class="searchClass" /> | |||
<input type="button" value="搜索" onclick="searchAllNew()" class="searchButton" /> | |||
</div> | |||
<div class="topTit02 fl" id="dress"> | |||
<img src="../../static/images/icon3.png" alt="" class="fl"/> | |||
<p class="fl">威海市</p> | |||
<div class="clear"></div> | |||
</div> | |||
<a href="javascript:void(0);" class="topTit02 fl">返回主站</a> | |||
<a href="../bidding/biddingBigData.html" class="topTit02 fl">竞价大厅</a> | |||
<div class="dressPc" id="dressList" style="display: none;"> | |||
<ul> | |||
<li> | |||
<p class="fl">文登区</p> | |||
<i class="jiantou"></i> | |||
<div class="clear"></div> | |||
</li> | |||
<li> | |||
<p class="fl">文登区</p> | |||
<i class="jiantou"></i> | |||
<div class="clear"></div> | |||
</li> | |||
<li> | |||
<p class="fl">文登区</p> | |||
<i class="jiantou"></i> | |||
<div class="clear"></div> | |||
</li> | |||
<li> | |||
<p class="fl">文登区</p> | |||
<i class="jiantou"></i> | |||
<div class="clear"></div> | |||
</li> | |||
</ul> | |||
</div> | |||
<div class="fr" id="userLogin" style="display: none;"> | |||
<a href="../login/login.html">请登录</a> | |||
<a href="../login/register.html">免费注册</a> | |||
</div> | |||
<div class="fr" id="userInfo" style="display: none;"> | |||
<img src="../../static/images/user_tips.png" class="block fl m-r-10" style="margin-top: 3px" alt=""/> | |||
<img src="../../static/images/member.png" class="block fl m-r-10" style="margin-top: 4px" alt=""/> | |||
<a href="../user/user.html" class="fl userName" id="userRealName">Sherry</a> | |||
<div class="clear"></div> | |||
</div> | |||
<div class="headHover" id="headHover" style="display: none;"> | |||
<ul> | |||
<li> | |||
<p id="userRealName2">Sherry</p> | |||
</li> | |||
<li class="m-t-5"> | |||
<img src="../../static/images/user_icon1.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的资料</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=demand" class="fl">我的供求</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon3.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=interact" class="fl">我的咨询</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li class="m-b-5"> | |||
<img src="../../static/images/user_icon4.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
<img src="../../static/images/user_icon5.png" class="fl" alt=""/> | |||
<a class="fl">退出登录</a> | |||
<div class="clear"></div> | |||
</li> | |||
</ul> | |||
</div> | |||
<div class="clear"></div> | |||
</div> | |||
</div> | |||
<!--LOGO search --> | |||
<div class="logoSearch w-1200"> | |||
<div class="wid50 logoSearch-div fl"> | |||
<div class="logo" onclick="goIndex()"></div> | |||
<h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
<div class="clear"></div> | |||
</div> | |||
<div class="clear"></div> | |||
</div> | |||
<!--顶部导航栏 --> | |||
<div class="top"> | |||
<ul class="container w-1200"> | |||
<li><a href="../../index.html">首页</a></li> | |||
<li class="active"><a href="../listingItems/itemsList.html">挂牌项目</a></li> | |||
<li><a href="../bidding/biddingList.html">竞价大厅</a></li> | |||
<li><a href="../announcement/announcement.html">项目公告</a></li> | |||
<li><a href="../demand/demand.html">个人供求</a></li> | |||
<li><a href="../new/newList.html">新闻资讯</a></li> | |||
<li><a href="../policy/policy.html">政策法规</a></li> | |||
<li><a href="../interact/interactList.html">互动交流</a></li> | |||
</ul> | |||
</div> | |||
<div class="w-1200"> | |||
<p class="font16 m-t-15 titIndex">需求项目<i>></i><span>需求详情</span></p> | |||
<table width="100%" cellpadding="0" border="1" cellspacing="0" id="announcementInformationContent"> | |||
<script id="announcementInformationData" type="text/html"> | |||
<tr> | |||
<td>需求项目名称</td> | |||
<td colspan="3">{{announcementInformationDetail.projectName}}</td> | |||
</tr> | |||
<tr> | |||
<td>需求项目类别</td> | |||
<td>{{announcementInformationDetail.projectNumber}}</td> | |||
<td>需求价格描述</td> | |||
<td>{{announcementInformationDetail.price}}</td> | |||
</tr> | |||
<tr> | |||
<td>需求方名称</td> | |||
<td>{{announcementInformationDetail.needname}}</td> | |||
<td>需求方地址</td> | |||
<td>{{announcementInformationDetail.address}}</td> | |||
</tr> | |||
<tr> | |||
<td>单位性质</td> | |||
<td>{{announcementInformationDetail.company}}</td> | |||
<td>单位法人</td> | |||
<td>{{announcementInformationDetail.legalPerson}}</td> | |||
</tr> | |||
<tr> | |||
<td>联系人</td> | |||
<td>{{announcementInformationDetail.realname}}</td> | |||
<td>联系电话</td> | |||
<td>{{announcementInformationDetail.phone}}</td> | |||
</tr> | |||
<tr> | |||
<td>身份证号</td> | |||
<td>{{announcementInformationDetail.idCardNum}}</td> | |||
<td>邮箱</td> | |||
<td>{{announcementInformationDetail.email}}</td> | |||
</tr> | |||
<tr> | |||
<td>需求开始时间</td> | |||
<td>{{announcementInformationDetail.needStartTime}}</td> | |||
<td>需求结束时间</td> | |||
<td>{{announcementInformationDetail.needStopTime}}</td> | |||
</tr> | |||
<tr> | |||
<td>用途与经营描述</td> | |||
<td colspan="3">{{announcementInformationDetail.description}}</td> | |||
</tr> | |||
</script> | |||
</table> | |||
</div> | |||
<!--底部链接 --> | |||
<div class="bottomLink"> | |||
<div class="w-1200"> | |||
<div class="w-1000 fl"> | |||
<p class="bottomLink-tit"><i class="el-icon-link"></i>友情链接</p> | |||
<script id="friendsLinksData" type="text/html"> | |||
{{each friendsLinksList as value i}} | |||
<a href="{{value.url}}" target="_blank">{{value.name}}</a> | |||
{{/each}} | |||
</script> | |||
<div class="bottomLink-linkList" id="friendsLinksContent"></div> | |||
<p class="ba" id="webConfigRecord"></p> | |||
<p class="ba" id="webConfigAddress"></p> | |||
</div> | |||
<div class="ewm fr"> | |||
<img src="../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||
<p class="ewmtit">关注公众号 了解详情</p> | |||
</div> | |||
<div class="clear"></div> | |||
</div> | |||
</div> | |||
</div> | |||
</body> | |||
<script src="../../static/js/common/require.js" data-main="../../static/js/common/main.js?t=101" id="require-page" | |||
target-module="../../static/js/project/listingItems/itemsNeedsDetail.js" defer type="text/javascript"></script> | |||
</html> |