@@ -19,7 +19,7 @@ | |||
<div class="bg-f7 txc"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<p class="topTit02 fr">返回主站</p> | |||
<a href="javascript:void(0);" class="topTit02 fr">返回主站</a> | |||
<!-- <div class="topTit02 fr" id="dress">--> | |||
<!-- <img src="static/images/icon3.png" alt="" class="fl"/>--> | |||
<!-- <p class="fl">威海市</p>--> | |||
@@ -82,17 +82,17 @@ | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="view/user/user.html?type=info" class="fl">我的供求</a> | |||
<a href="view/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="view/user/user.html?type=info" class="fl">我的咨询</a> | |||
<a href="view/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="view/user/user.html?type=info" class="fl">我的竞价</a> | |||
<a href="view/user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
@@ -731,15 +731,11 @@ | |||
{{/each}} | |||
</script> | |||
<div class="bottomLink-linkList" id="friendsLinksContent"></div> | |||
<p class="ba" id="webConfigRecord"> | |||
鲁公网安备<span>12011502000077号</span><span>京ICP备 17061038号-1</span> | |||
</p> | |||
<p class="ba" id="webConfigAddress"> | |||
左云县农村产权交易网<span>联系地址:北京紫竹书院技术基地</span><span>联系电话:400-060-123</span> | |||
</p> | |||
<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="" /> | |||
<img src="../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||
<p class="ewmtit">关注公众号 了解详情</p> | |||
</div> | |||
<div class="clear"></div> | |||
@@ -0,0 +1,3 @@ | |||
{ | |||
"lockfileVersion": 1 | |||
} |
@@ -119,7 +119,6 @@ | |||
color: #ffffff; | |||
border: none; | |||
border-radius: 20px; | |||
float: right; | |||
margin-bottom: 10px; | |||
} | |||
@@ -131,7 +130,7 @@ | |||
} | |||
.iWanna{ | |||
margin: 0!important; | |||
margin: 0 auto!important; | |||
border: 1px solid #626262!important; | |||
background: #ffffff!important; | |||
color: #626262!important; | |||
@@ -79,7 +79,6 @@ requirejs.config({ | |||
require(['jquery', 'addressApi']); | |||
require(["jquery", "nprogress"], function ($, nprogress) { | |||
//ajax加载页面跳转 | |||
$(document).ajaxStart(function () { | |||
// $('.loading').show(); | |||
@@ -107,7 +106,6 @@ require(["jquery", "nprogress"], function ($, nprogress) { | |||
require(["jquery", "Tools","addressApi"], function ($, Tools) { | |||
var tools = new Tools(); | |||
// document.getElementById('dress').onmouseover = function(){ | |||
// document.getElementById('dressList').style.display = 'block'; | |||
// }; | |||
@@ -1,4 +1,5 @@ | |||
var serverApi = ''; | |||
var friendsLinksList = []; | |||
define(['jquery', 'dialog'], function ($, dialog) { | |||
// 工具类 | |||
function Tool() { | |||
@@ -437,14 +438,15 @@ define(['jquery', 'dialog'], function ($, dialog) { | |||
webConfigInformation: function (data) { | |||
if (data.code == 200) { | |||
var content = data.data; | |||
console.log(content) | |||
$("#webConfigName").html(content[0].configValue); | |||
$("#webConfigRecord").html(content[1].configValue + content[2].configValue); | |||
$("#webConfigAddress").html(content[0].configValue + ' ' + content[3].configValue); | |||
$("#webConfigRecord").html(content[1].configValue + '<span style="margin-left: 10px;"></span>' + content[2].configValue); | |||
$("#webConfigAddress").html(content[0].configValue + '<span style="margin-left: 10px;"></span>' + content[3].configValue); | |||
serverApi = content[11].configValue; | |||
} | |||
}, | |||
/** | |||
* webConfigInformation 网站配置信息 | |||
* removeAllCookie 清除所有Cookie | |||
* @param | |||
*/ | |||
removeAllCookie: function () { | |||
@@ -17,7 +17,16 @@ define(['jquery', "template", "Tools", "announApi", "paging"], function ($, temp | |||
//网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
tools.getWebConfig(); | |||
}; | |||
//底部友情链接 | |||
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); | |||
@@ -24,6 +24,8 @@ define(['jquery', "template", "Tools", "announApi", "paging"], function ($, temp | |||
var tools = new Tools(); | |||
module.init = function (page) { | |||
//底部友情链接 | |||
tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); | |||
//成交公告 | |||
tools.doGet(announList, {deptId:100,pageNum:module.data.pageNum,pageSize:module.data.pageSize}, module.announInformation,true); | |||
var type = getQueryVariable('type'); | |||
@@ -40,6 +42,16 @@ define(['jquery', "template", "Tools", "announApi", "paging"], function ($, temp | |||
//网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
tools.getWebConfig(); | |||
}; | |||
//底部友情链接 | |||
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); | |||
@@ -11,7 +11,8 @@ define(['jquery', "template", "Tools", "announApi", "paging"], function ($, temp | |||
var tools = new Tools(); | |||
module.init = function (page) { | |||
//底部友情链接 | |||
tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); | |||
//鉴证公告 | |||
tools.doGet(attestationDetail+'/'+getQueryVariable('id'), {}, module.announInformation,true); | |||
//网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
@@ -28,6 +29,16 @@ define(['jquery', "template", "Tools", "announApi", "paging"], function ($, temp | |||
} | |||
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) { | |||
@@ -11,6 +11,8 @@ define(['jquery', "template", "Tools", "announApi", "paging"], function ($, temp | |||
var tools = new Tools(); | |||
module.init = function (page) { | |||
//底部友情链接 | |||
tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); | |||
//成交公告 | |||
tools.doGet(jyqzSearch, {jyqzNum:getQueryVariable('searchKeyWord'),deptId:100}, module.announDetail,true); | |||
//网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
@@ -27,6 +29,16 @@ define(['jquery', "template", "Tools", "announApi", "paging"], function ($, temp | |||
} | |||
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.announDetail = function(data){ | |||
module.data.jyqzNumOne = data.rows[0].jyqzNumOne | |||
module.data.jyqzNumTwo = data.rows[0].jyqzNumTwo | |||
@@ -51,7 +51,8 @@ define(['jquery', "template", "Tools", "biddingApi", "itemsApi", "paging",'dateT | |||
var tools = new Tools(); | |||
module.init = function (page) { | |||
//底部友情链接 | |||
tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); | |||
//新闻资讯 | |||
tools.doGet(biddingList, {deptId:100,pageNum:module.data.pageNum,pageSize:module.data.pageSize}, module.biddingList,true); | |||
@@ -247,6 +248,16 @@ define(['jquery', "template", "Tools", "biddingApi", "itemsApi", "paging",'dateT | |||
} | |||
document.getElementById('status'+id).className = 'auction_hall_table_tab auction_hall_table_tab_select' | |||
} | |||
//底部友情链接 | |||
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); | |||
} | |||
} | |||
goSearch = function(){ | |||
module.data.itemsInformationList = ''; | |||
@@ -26,7 +26,8 @@ define(['jquery', "template", "Tools", "demandApi", "paging"], function ($, temp | |||
var tools = new Tools(); | |||
module.init = function (page) { | |||
//底部友情链接 | |||
tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); | |||
//个人供应 | |||
tools.doGet( | |||
demandList, | |||
@@ -54,6 +55,16 @@ define(['jquery', "template", "Tools", "demandApi", "paging"], function ($, temp | |||
//网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
tools.getWebConfig(); | |||
}; | |||
//底部友情链接 | |||
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.supplyInformation = function (data) { | |||
@@ -26,6 +26,8 @@ define(['jquery', "template", "Tools", "demandApi", "paging","user"], function ( | |||
var tools = new Tools(); | |||
module.init = function (page) { | |||
//底部友情链接 | |||
tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); | |||
//网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
tools.getWebConfig(); | |||
@@ -51,6 +53,16 @@ define(['jquery', "template", "Tools", "demandApi", "paging","user"], function ( | |||
tools.doGet(demandImageList+'/'+getQueryVariable('id'), {}, module.demandImageDetail,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); | |||
} | |||
} | |||
module.demandImageDetail = function(data){ | |||
console.log(data) | |||
@@ -301,6 +301,7 @@ define(['jquery', "template", "Tools", "echarts", 'swiper'], function ($, templa | |||
module.webConfigInformation = function (data) { | |||
if (data.code == 200) { | |||
var content = data.data; | |||
console.log(content) | |||
$("#webConfigName").html(content[0].configValue); | |||
$("#webConfigRecord").html(content[1].configValue + content[2].configValue); | |||
$("#webConfigAddress").html(content[0].configValue+' '+content[3].configValue); | |||
@@ -321,6 +322,7 @@ define(['jquery', "template", "Tools", "echarts", 'swiper'], function ($, templa | |||
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); | |||
@@ -22,7 +22,8 @@ define(['jquery', "template", "Tools", "interactApi", "paging"], function ($, te | |||
var tools = new Tools(); | |||
module.init = function (page) { | |||
//底部友情链接 | |||
tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); | |||
if(getQueryVariable('keyWord')){ | |||
$('#searchTitle').val(getQueryVariable('keyWord')); | |||
goSearch() | |||
@@ -73,6 +74,16 @@ define(['jquery', "template", "Tools", "interactApi", "paging"], function ($, te | |||
$("#interactInformationContent").html(interactInformationData); | |||
} | |||
} | |||
//底部友情链接 | |||
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.searchInteractInformation = function (data) { | |||
if (data.code == 200) { | |||
@@ -10,7 +10,8 @@ define(['jquery', "template", "Tools", 'swiper', 'itemsApi',"cupload"], function | |||
}; | |||
var tools = new Tools(); | |||
module.init = function (page) { | |||
module.init = function (page) {//底部友情链接 | |||
tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); | |||
document.getElementById('realName').value = tools.getCookie('userName'); | |||
document.getElementById('userNum').value = tools.getCookie('phone'); | |||
document.getElementById('userBank').value = tools.getCookie('bankAddress'); | |||
@@ -21,6 +22,16 @@ define(['jquery', "template", "Tools", 'swiper', 'itemsApi',"cupload"], function | |||
//网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
tools.getWebConfig(); | |||
}; | |||
//底部友情链接 | |||
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){ | |||
@@ -12,6 +12,9 @@ define(['jquery', "template", "Tools", 'swiper', 'itemsApi'], function ($, templ | |||
var tools = new Tools(); | |||
module.init = function (page) { | |||
//底部友情链接 | |||
tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); | |||
module.data.loginNow = tools.getCookie('Admin-Token'); | |||
//浏览次数 | |||
tools.doGet(outProject, {id:getQueryVariable('id')}, module.projectNum,true); | |||
@@ -55,6 +58,16 @@ define(['jquery', "template", "Tools", 'swiper', 'itemsApi'], function ($, templ | |||
module.data.know = content[6].configValue; | |||
} | |||
} | |||
//底部友情链接 | |||
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.dataCompare = function(signupStartTime,signupStopTime,biddingStartTime,biddingStopTime){ | |||
var signupStartTime = signupStartTime; | |||
var signupStopTime = signupStopTime; | |||
@@ -58,7 +58,8 @@ define(['jquery', "template", "Tools", "itemsApi", "paging", 'dateTime'], functi | |||
var tools = new Tools(); | |||
module.init = function (page) { | |||
//底部友情链接 | |||
tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); | |||
if (getQueryVariable('projectCode') || getQueryVariable('projectName') || getQueryVariable('projectNumber')) { | |||
console.log('首页进入') | |||
tools.doGet(itemsList, { | |||
@@ -237,6 +238,16 @@ define(['jquery', "template", "Tools", "itemsApi", "paging", 'dateTime'], functi | |||
document.getElementById('allDept').onclick = allDept; | |||
tools.doGet(webDept + '/0', {}, module.deptLocation, 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); | |||
} | |||
} | |||
turnThePage = function (pageNum) { | |||
module.data.pageNum = pageNum; | |||
@@ -20,6 +20,8 @@ define(['jquery', "template", "Tools", "newApi", "paging"], function ($, templat | |||
var tools = new Tools(); | |||
module.init = function (page) { | |||
//底部友情链接 | |||
tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); | |||
if(getQueryVariable('title') ){ | |||
console.log('搜索进入') | |||
//新闻资讯 | |||
@@ -42,6 +44,16 @@ define(['jquery', "template", "Tools", "newApi", "paging"], function ($, templat | |||
} | |||
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.NewsInformation = function (data) { | |||
@@ -11,7 +11,8 @@ define(['jquery', "template", "Tools", "newApi"], function ($, template, Tools ) | |||
var tools = new Tools(); | |||
module.init = function (page) { | |||
//底部友情链接 | |||
tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); | |||
console.log(getQueryVariable('id')) | |||
//新闻资讯 | |||
tools.doGet(newDetail + '/'+getQueryVariable('id'), {}, module.NewsInformation,true); | |||
@@ -19,6 +20,16 @@ define(['jquery', "template", "Tools", "newApi"], function ($, template, Tools ) | |||
//网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
tools.getWebConfig(); | |||
}; | |||
//底部友情链接 | |||
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){ | |||
@@ -24,7 +24,8 @@ define(['jquery', "template", "Tools", "policyApi", "paging"], function ($, temp | |||
var tools = new Tools(); | |||
module.init = function (page) { | |||
//底部友情链接 | |||
tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); | |||
var type = getQueryVariable('type'); | |||
if(type != undefined && type != ''){ | |||
console.log('搜索进入') | |||
@@ -63,6 +64,16 @@ define(['jquery', "template", "Tools", "policyApi", "paging"], function ($, temp | |||
} | |||
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.policyInformation = function (data) { | |||
@@ -27,7 +27,8 @@ define(['jquery', "template", "Tools", "user", "paging","cupload","kindeditor"], | |||
}; | |||
var tools = new Tools(); | |||
module.init = function (page) { | |||
//底部友情链接 | |||
tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); | |||
//用户资料 | |||
tools.doGet(userData, {}, module.userData); | |||
@@ -49,6 +50,16 @@ define(['jquery', "template", "Tools", "user", "paging","cupload","kindeditor"], | |||
module.getType(type); | |||
}; | |||
//底部友情链接 | |||
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.getType = function(type){ | |||
@@ -741,5 +752,10 @@ define(['jquery', "template", "Tools", "user", "paging","cupload","kindeditor"], | |||
tools.doGet(supplyDemandImg+'/'+content.id, {}, module.showSupplyImage); | |||
console.log(data) | |||
} | |||
goProject = function(id){ | |||
tools.skip('../listingItems/itemsDetail.html?id='+id) | |||
} | |||
return module; | |||
}); |
@@ -13,6 +13,8 @@ define(['jquery', "Tools","user"], function ($, Tools) { | |||
//默认进入页面加载方法 | |||
module.init = function (page) { | |||
//底部友情链接 | |||
tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); | |||
//点击登录 | |||
$('#login-submit').on('click', module.login) | |||
//点击图形验证码 | |||
@@ -25,6 +27,16 @@ define(['jquery', "Tools","user"], function ($, Tools) { | |||
tools.getWebConfig(); | |||
}; | |||
//底部友情链接 | |||
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); | |||
} | |||
} | |||
/*-----------------------------自定义方法-------------------------------------*/ | |||
//登录方式切换 | |||
loginTab = function(type){ | |||
@@ -11,6 +11,8 @@ define(['jquery', "template", "Tools", "echarts", 'swiper'], function ($, templa | |||
var tools = new Tools(); | |||
module.init = function (page) { | |||
//底部友情链接 | |||
tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); | |||
//背景高度 | |||
module.register(); | |||
module.data.type = getQueryVariable("type") | |||
@@ -18,6 +20,16 @@ define(['jquery', "template", "Tools", "echarts", 'swiper'], function ($, templa | |||
tools.getWebConfig(); | |||
}; | |||
//底部友情链接 | |||
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); | |||
@@ -11,6 +11,8 @@ define(['jquery', "template", "Tools", "echarts", 'register', 'swiper'], functio | |||
var tools = new Tools(); | |||
module.init = function (page) { | |||
//底部友情链接 | |||
tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); | |||
//点击注册 | |||
$('#register-submit').on('click', module.register) | |||
//点击图形验证码 | |||
@@ -24,6 +26,16 @@ define(['jquery', "template", "Tools", "echarts", 'register', 'swiper'], functio | |||
}; | |||
//底部友情链接 | |||
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); | |||
@@ -23,7 +23,7 @@ | |||
<div class="bg-f7 txc"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<p class="topTit02 fr">返回主站</p> | |||
<a href="../../index.html" class="topTit02 fr">返回主站</a> | |||
<!-- <div class="topTit02 fr" id="dress">--> | |||
<!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
<!-- <p class="fl">威海市</p>--> | |||
@@ -86,17 +86,17 @@ | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的供求</a> | |||
<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=info" class="fl">我的咨询</a> | |||
<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=info" class="fl">我的竞价</a> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
@@ -173,29 +173,25 @@ | |||
</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"> | |||
鲁公网安备<span>12011502000077号</span><span>京ICP备 17061038号-1</span> | |||
</p> | |||
<p class="ba" id="webConfigAddress"> | |||
左云县农村产权交易网<span>联系地址:北京紫竹书院技术基地</span><span>联系电话:400-060-123</span> | |||
</p> | |||
</div> | |||
<div class="ewm fr"> | |||
<img src="../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||
<p class="ewmtit">关注公众号 了解详情</p> | |||
<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 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" | |||
@@ -20,7 +20,7 @@ | |||
<div class="bg-f7 txc"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<p class="topTit02 fr">返回主站</p> | |||
<a href="../../index.html" class="topTit02 fr">返回主站</a> | |||
<!-- <div class="topTit02 fr" id="dress">--> | |||
<!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
<!-- <p class="fl">威海市</p>--> | |||
@@ -83,17 +83,17 @@ | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的供求</a> | |||
<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=info" class="fl">我的咨询</a> | |||
<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=info" class="fl">我的竞价</a> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
@@ -184,29 +184,25 @@ | |||
</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"> | |||
鲁公网安备<span>12011502000077号</span><span>京ICP备 17061038号-1</span> | |||
</p> | |||
<p class="ba" id="webConfigAddress"> | |||
左云县农村产权交易网<span>联系地址:北京紫竹书院技术基地</span><span>联系电话:400-060-123</span> | |||
</p> | |||
</div> | |||
<div class="ewm fr"> | |||
<img src="../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||
<p class="ewmtit">关注公众号 了解详情</p> | |||
<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 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" | |||
@@ -20,7 +20,7 @@ | |||
<div class="bg-f7 txc"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<p class="topTit02 fr">返回主站</p> | |||
<a href="../../index.html" class="topTit02 fr">返回主站</a> | |||
<!-- <div class="topTit02 fr" id="dress">--> | |||
<!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
<!-- <p class="fl">威海市</p>--> | |||
@@ -83,17 +83,17 @@ | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的供求</a> | |||
<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=info" class="fl">我的咨询</a> | |||
<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=info" class="fl">我的竞价</a> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
@@ -239,29 +239,25 @@ | |||
</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"> | |||
鲁公网安备<span>12011502000077号</span><span>京ICP备 17061038号-1</span> | |||
</p> | |||
<p class="ba" id="webConfigAddress"> | |||
左云县农村产权交易网<span>联系地址:北京紫竹书院技术基地</span><span>联系电话:400-060-123</span> | |||
</p> | |||
</div> | |||
<div class="ewm fr"> | |||
<img src="../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||
<p class="ewmtit">关注公众号 了解详情</p> | |||
<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 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" | |||
@@ -20,7 +20,7 @@ | |||
<div class="bg-f7 txc"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<p class="topTit02 fr">返回主站</p> | |||
<a href="../../index.html" class="topTit02 fr">返回主站</a> | |||
<!-- <div class="topTit02 fr" id="dress">--> | |||
<!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
<!-- <p class="fl">威海市</p>--> | |||
@@ -83,17 +83,17 @@ | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的供求</a> | |||
<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=info" class="fl">我的咨询</a> | |||
<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=info" class="fl">我的竞价</a> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
@@ -197,29 +197,25 @@ | |||
</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"> | |||
鲁公网安备<span>12011502000077号</span><span>京ICP备 17061038号-1</span> | |||
</p> | |||
<p class="ba" id="webConfigAddress"> | |||
左云县农村产权交易网<span>联系地址:北京紫竹书院技术基地</span><span>联系电话:400-060-123</span> | |||
</p> | |||
</div> | |||
<div class="ewm fr"> | |||
<img src="../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||
<p class="ewmtit">关注公众号 了解详情</p> | |||
<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 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" | |||
@@ -23,7 +23,7 @@ | |||
<div class="bg-f7 txc"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<p class="topTit02 fr">返回主站</p> | |||
<a href="../../index.html" class="topTit02 fr">返回主站</a> | |||
<!-- <div class="topTit02 fr" id="dress">--> | |||
<!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
<!-- <p class="fl">威海市</p>--> | |||
@@ -86,17 +86,17 @@ | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的供求</a> | |||
<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=info" class="fl">我的咨询</a> | |||
<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=info" class="fl">我的竞价</a> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
@@ -235,7 +235,7 @@ | |||
<td>竞价开始时间</td> | |||
<td>标的底价</td> | |||
<td>当前报价</td> | |||
<td>竞价剩余时间</td> | |||
<td>竞价状态</td> | |||
<td>操作</td> | |||
</tr> | |||
</table> | |||
@@ -265,29 +265,25 @@ | |||
</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"> | |||
鲁公网安备<span>12011502000077号</span><span>京ICP备 17061038号-1</span> | |||
</p> | |||
<p class="ba" id="webConfigAddress"> | |||
左云县农村产权交易网<span>联系地址:北京紫竹书院技术基地</span><span>联系电话:400-060-123</span> | |||
</p> | |||
</div> | |||
<div class="ewm fr"> | |||
<img src="../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||
<p class="ewmtit">关注公众号 了解详情</p> | |||
<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 class="clear"></div> | |||
</div> | |||
</div> | |||
</div> | |||
</body> | |||
<!--target-module="./static/js/project/index.js"--> | |||
@@ -21,7 +21,7 @@ | |||
<div class="bg-f7 txc"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<p class="topTit02 fr">返回主站</p> | |||
<a href="../../index.html" class="topTit02 fr">返回主站</a> | |||
<!-- <div class="topTit02 fr" id="dress">--> | |||
<!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
<!-- <p class="fl">威海市</p>--> | |||
@@ -84,17 +84,17 @@ | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的供求</a> | |||
<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=info" class="fl">我的咨询</a> | |||
<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=info" class="fl">我的竞价</a> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
@@ -187,29 +187,25 @@ | |||
</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"> | |||
鲁公网安备<span>12011502000077号</span><span>京ICP备 17061038号-1</span> | |||
</p> | |||
<p class="ba" id="webConfigAddress"> | |||
左云县农村产权交易网<span>联系地址:北京紫竹书院技术基地</span><span>联系电话:400-060-123</span> | |||
</p> | |||
</div> | |||
<div class="ewm fr"> | |||
<img src="../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||
<p class="ewmtit">关注公众号 了解详情</p> | |||
<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 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" | |||
@@ -21,7 +21,7 @@ | |||
<div class="bg-f7 txc"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<p class="topTit02 fr">返回主站</p> | |||
<a href="../../index.html" class="topTit02 fr">返回主站</a> | |||
<!-- <div class="topTit02 fr" id="dress">--> | |||
<!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
<!-- <p class="fl">威海市</p>--> | |||
@@ -84,17 +84,17 @@ | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的供求</a> | |||
<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=info" class="fl">我的咨询</a> | |||
<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=info" class="fl">我的竞价</a> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
@@ -168,29 +168,25 @@ | |||
</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"> | |||
鲁公网安备<span>12011502000077号</span><span>京ICP备 17061038号-1</span> | |||
</p> | |||
<p class="ba" id="webConfigAddress"> | |||
左云县农村产权交易网<span>联系地址:北京紫竹书院技术基地</span><span>联系电话:400-060-123</span> | |||
</p> | |||
</div> | |||
<div class="ewm fr"> | |||
<img src="../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||
<p class="ewmtit">关注公众号 了解详情</p> | |||
<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 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" | |||
@@ -21,7 +21,7 @@ | |||
<div class="bg-f7 txc"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<p class="topTit02 fr">返回主站</p> | |||
<a href="../../index.html" class="topTit02 fr">返回主站</a> | |||
<!-- <div class="topTit02 fr" id="dress">--> | |||
<!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
<!-- <p class="fl">威海市</p>--> | |||
@@ -84,17 +84,17 @@ | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的供求</a> | |||
<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=info" class="fl">我的咨询</a> | |||
<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=info" class="fl">我的竞价</a> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
@@ -194,29 +194,25 @@ | |||
</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"> | |||
鲁公网安备<span>12011502000077号</span><span>京ICP备 17061038号-1</span> | |||
</p> | |||
<p class="ba" id="webConfigAddress"> | |||
左云县农村产权交易网<span>联系地址:北京紫竹书院技术基地</span><span>联系电话:400-060-123</span> | |||
</p> | |||
</div> | |||
<div class="ewm fr"> | |||
<img src="../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||
<p class="ewmtit">关注公众号 了解详情</p> | |||
<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 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" | |||
@@ -20,7 +20,7 @@ | |||
<div class="bg-f7 txc"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<p class="topTit02 fr">返回主站</p> | |||
<a href="../../index.html" class="topTit02 fr">返回主站</a> | |||
<!-- <div class="topTit02 fr" id="dress">--> | |||
<!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
<!-- <p class="fl">威海市</p>--> | |||
@@ -83,17 +83,17 @@ | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的供求</a> | |||
<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=info" class="fl">我的咨询</a> | |||
<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=info" class="fl">我的竞价</a> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
@@ -177,29 +177,25 @@ | |||
</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"> | |||
鲁公网安备<span>12011502000077号</span><span>京ICP备 17061038号-1</span> | |||
</p> | |||
<p class="ba" id="webConfigAddress"> | |||
左云县农村产权交易网<span>联系地址:北京紫竹书院技术基地</span><span>联系电话:400-060-123</span> | |||
</p> | |||
</div> | |||
<div class="ewm fr"> | |||
<img src="../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||
<p class="ewmtit">关注公众号 了解详情</p> | |||
<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 class="clear"></div> | |||
</div> | |||
</div> | |||
</div> | |||
<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/bond.js" defer type="text/javascript"></script> | |||
@@ -26,7 +26,7 @@ | |||
<div class="bg-f7 txc"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<p class="topTit02 fr">返回主站</p> | |||
<a href="../../index.html" class="topTit02 fr">返回主站</a> | |||
<!-- <div class="topTit02 fr" id="dress">--> | |||
<!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
<!-- <p class="fl">威海市</p>--> | |||
@@ -89,17 +89,17 @@ | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的供求</a> | |||
<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=info" class="fl">我的咨询</a> | |||
<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=info" class="fl">我的竞价</a> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
@@ -23,7 +23,7 @@ | |||
<div class="bg-f7 txc"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<p class="topTit02 fr">返回主站</p> | |||
<a href="../../index.html" class="topTit02 fr">返回主站</a> | |||
<!-- <div class="topTit02 fr" id="dress">--> | |||
<!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
<!-- <p class="fl">威海市</p>--> | |||
@@ -86,17 +86,17 @@ | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的供求</a> | |||
<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=info" class="fl">我的咨询</a> | |||
<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=info" class="fl">我的竞价</a> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
@@ -279,29 +279,25 @@ | |||
</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"> | |||
鲁公网安备<span>12011502000077号</span><span>京ICP备 17061038号-1</span> | |||
</p> | |||
<p class="ba" id="webConfigAddress"> | |||
左云县农村产权交易网<span>联系地址:北京紫竹书院技术基地</span><span>联系电话:400-060-123</span> | |||
</p> | |||
</div> | |||
<div class="ewm fr"> | |||
<img src="../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||
<p class="ewmtit">关注公众号 了解详情</p> | |||
<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 class="clear"></div> | |||
</div> | |||
</div> | |||
</div> | |||
</body> | |||
<!--target-module="./static/js/project/index.js"--> | |||
@@ -20,7 +20,7 @@ | |||
<div class="bg-f7 txc" style="display: none;"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<p class="topTit02 fr">返回主站</p> | |||
<a href="../../index.html" class="topTit02 fr">返回主站</a> | |||
<!-- <div class="topTit02 fr" id="dress">--> | |||
<!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
<!-- <p class="fl">威海市</p>--> | |||
@@ -79,17 +79,17 @@ | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的供求</a> | |||
<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=info" class="fl">我的咨询</a> | |||
<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=info" class="fl">我的竞价</a> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
@@ -20,7 +20,7 @@ | |||
<div class="bg-f7 txc" style="display: none;"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<p class="topTit02 fr">返回主站</p> | |||
<a href="../../index.html" class="topTit02 fr">返回主站</a> | |||
<!-- <div class="topTit02 fr" id="dress">--> | |||
<!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
<!-- <p class="fl">威海市</p>--> | |||
@@ -79,17 +79,17 @@ | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的供求</a> | |||
<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=info" class="fl">我的咨询</a> | |||
<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=info" class="fl">我的竞价</a> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
@@ -20,7 +20,7 @@ | |||
<div class="bg-f7 txc" style="display: none;"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<p class="topTit02 fr">返回主站</p> | |||
<a href="../../index.html" class="topTit02 fr">返回主站</a> | |||
<!-- <div class="topTit02 fr" id="dress">--> | |||
<!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
<!-- <p class="fl">威海市</p>--> | |||
@@ -79,17 +79,17 @@ | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的供求</a> | |||
<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=info" class="fl">我的咨询</a> | |||
<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=info" class="fl">我的竞价</a> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
@@ -20,7 +20,7 @@ | |||
<div class="bg-f7 txc" style="display: none;"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<p class="topTit02 fr">返回主站</p> | |||
<a href="../../index.html" class="topTit02 fr">返回主站</a> | |||
<!-- <div class="topTit02 fr" id="dress">--> | |||
<!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
<!-- <p class="fl">威海市</p>--> | |||
@@ -79,17 +79,17 @@ | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的供求</a> | |||
<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=info" class="fl">我的咨询</a> | |||
<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=info" class="fl">我的竞价</a> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
@@ -20,7 +20,7 @@ | |||
<div class="bg-f7 txc"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<p class="topTit02 fr">返回主站</p> | |||
<a href="../../index.html" class="topTit02 fr">返回主站</a> | |||
<!-- <div class="topTit02 fr" id="dress">--> | |||
<!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
<!-- <p class="fl">威海市</p>--> | |||
@@ -83,17 +83,17 @@ | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的供求</a> | |||
<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=info" class="fl">我的咨询</a> | |||
<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=info" class="fl">我的竞价</a> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
@@ -144,29 +144,25 @@ | |||
</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"> | |||
鲁公网安备<span>12011502000077号</span><span>京ICP备 17061038号-1</span> | |||
</p> | |||
<p class="ba" id="webConfigAddress"> | |||
左云县农村产权交易网<span>联系地址:北京紫竹书院技术基地</span><span>联系电话:400-060-123</span> | |||
</p> | |||
</div> | |||
<div class="ewm fr"> | |||
<img src="../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||
<p class="ewmtit">关注公众号 了解详情</p> | |||
<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 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" | |||
@@ -21,7 +21,7 @@ | |||
<div class="bg-f7 txc"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<p class="topTit02 fr">返回主站</p> | |||
<a href="../../index.html" class="topTit02 fr">返回主站</a> | |||
<!-- <div class="topTit02 fr" id="dress">--> | |||
<!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
<!-- <p class="fl">威海市</p>--> | |||
@@ -84,17 +84,17 @@ | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的供求</a> | |||
<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=info" class="fl">我的咨询</a> | |||
<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=info" class="fl">我的竞价</a> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
@@ -150,29 +150,25 @@ | |||
</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"> | |||
鲁公网安备<span>12011502000077号</span><span>京ICP备 17061038号-1</span> | |||
</p> | |||
<p class="ba" id="webConfigAddress"> | |||
左云县农村产权交易网<span>联系地址:北京紫竹书院技术基地</span><span>联系电话:400-060-123</span> | |||
</p> | |||
</div> | |||
<div class="ewm fr"> | |||
<img src="../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||
<p class="ewmtit">关注公众号 了解详情</p> | |||
<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 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" | |||
@@ -23,7 +23,7 @@ | |||
<div class="bg-f7 txc"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<p class="topTit02 fr">返回主站</p> | |||
<a href="../../index.html" class="topTit02 fr">返回主站</a> | |||
<!-- <div class="topTit02 fr" id="dress">--> | |||
<!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
<!-- <p class="fl">威海市</p>--> | |||
@@ -86,17 +86,17 @@ | |||
</li> | |||
<li> | |||
<img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
<a href="../user/user.html?type=info" class="fl">我的供求</a> | |||
<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=info" class="fl">我的咨询</a> | |||
<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=info" class="fl">我的竞价</a> | |||
<a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
<div class="clear"></div> | |||
</li> | |||
<li onclick="outLogin()"> | |||
@@ -188,29 +188,25 @@ | |||
</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"> | |||
鲁公网安备<span>12011502000077号</span><span>京ICP备 17061038号-1</span> | |||
</p> | |||
<p class="ba" id="webConfigAddress"> | |||
左云县农村产权交易网<span>联系地址:北京紫竹书院技术基地</span><span>联系电话:400-060-123</span> | |||
</p> | |||
</div> | |||
<div class="ewm fr"> | |||
<img src="../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||
<p class="ewmtit">关注公众号 了解详情</p> | |||
<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 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" | |||
@@ -23,7 +23,7 @@ | |||
<div class="bg-f7 txc"> | |||
<div class="w-1200 topDress"> | |||
<p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
<p class="topTit02 fr">返回主站</p> | |||
<a href="../../index.html" class="topTit02 fr">返回主站</a> | |||
<!-- <div class="topTit02 fr" id="dress">--> | |||
<!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
<!-- <p class="fl">威海市</p>--> | |||
@@ -315,29 +315,37 @@ | |||
{{each userSupplyInformationList as value i}} | |||
<tr> | |||
<td>{{i+1}}</td> | |||
<td>供</td> | |||
<td> | |||
{{if value.supplyDemandType == 1}} | |||
供 | |||
{{else}} | |||
求 | |||
{{/if}} | |||
</td> | |||
<td width="400">{{value.projectName}}</td> | |||
<td>{{value.logintime}}</td> | |||
<td>{{value.phone}}</td> | |||
<td> | |||
{{if value.isAuditStatus == Y}} | |||
{{if value.isAuditStatus == 'Y'}} | |||
是 | |||
{{else}} | |||
否 | |||
{{/if}} | |||
</td> | |||
<td> | |||
<div class="fl" onclick="selectUserSupply({{value.id}})"> | |||
<img src="../../static/images/modify.png" alt="" class="fl"/> | |||
<p class="fl">修改</p> | |||
<div class="clear"></div> | |||
</div> | |||
<div class="fr" onclick="deleteUserSupply({{value.id}})"> | |||
<img src="../../static/images/detail.png" alt="" class="fl"/> | |||
<p class="fl">删除</p> | |||
<td width="130"> | |||
{{if value.isAuditStatus == 'N'}} | |||
<div class="fl" onclick="selectUserSupply({{value.id}})"> | |||
<img src="../../static/images/modify.png" alt="" class="fl"/> | |||
<p class="fl">修改</p> | |||
<div class="clear"></div> | |||
</div> | |||
<div class="fr" onclick="deleteUserSupply({{value.id}})"> | |||
<img src="../../static/images/detail.png" alt="" class="fl"/> | |||
<p class="fl">删除</p> | |||
<div class="clear"></div> | |||
</div> | |||
<div class="clear"></div> | |||
</div> | |||
<div class="clear"></div> | |||
{{/if}} | |||
</td> | |||
</tr> | |||
{{/each}} | |||
@@ -477,9 +485,8 @@ | |||
<script id="biddingInformationData" type="text/html"> | |||
<tr> | |||
<td>序号</td> | |||
<td>项目编号</td> | |||
<td>项目名称</td> | |||
<td>距离结束时间</td> | |||
<td>结束时间</td> | |||
<td>项目当前价</td> | |||
<td>我的竞价</td> | |||
<td>项目状态</td> | |||
@@ -487,15 +494,14 @@ | |||
</tr> | |||
{{each biddingInformationList as value i}} | |||
<tr> | |||
<td>1</td> | |||
<td>供</td> | |||
<td>出租济南市莱芜区方下街道龙口东村229亩土地经营权</td> | |||
<td>2021-03-02</td> | |||
<td>15563425122</td> | |||
<td>是</td> | |||
<td>进行中</td> | |||
<td>{{i+1}}</td> | |||
<td>{{value.projectName}}</td> | |||
<td>{{value.biddingStopTime.substr(0,10)}}</td> | |||
<td>{{value.memberMoney}}</td> | |||
<td>{{value.money}}</td> | |||
<td>{{value.projectShowStatus}}</td> | |||
<td> | |||
<input type="button" value="我要竞价" class="iWanna"/> | |||
<input type="button" value="我要竞价" onclick="goProject({{value.id}})" class="iWanna"/> | |||
</td> | |||
</tr> | |||
{{/each}} | |||
@@ -513,29 +519,25 @@ | |||
<!--底部链接 --> | |||
<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"> | |||
鲁公网安备<span>12011502000077号</span><span>京ICP备 17061038号-1</span> | |||
</p> | |||
<p class="ba" id="webConfigAddress"> | |||
左云县农村产权交易网<span>联系地址:北京紫竹书院技术基地</span><span>联系电话:400-060-123</span> | |||
</p> | |||
</div> | |||
<div class="ewm fr"> | |||
<img src="../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||
<p class="ewmtit">关注公众号 了解详情</p> | |||
<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 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" | |||