| @@ -17,7 +17,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li class="active"><a href="javascript:void(0);">首页</a></li> | |||
| @@ -30,7 +30,6 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../static/images/member.png" onclick="window.location='view/record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| @@ -22,17 +22,18 @@ | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="index.html">首页</a></li> | |||
| <li class="active"><a href="index.html">首页</a></li> | |||
| <li><a href="view/supply/index.html">供求信息</a></li> | |||
| <li><a href="view/train/index.html">培训活动</a></li> | |||
| <li><a href="view/directories/index.html">主体名录</a></li> | |||
| <li><a href="view/price/index.html">价格看板</a></li> | |||
| <li><a href="view/train/index.html">农技服务</a></li> | |||
| <li><a href="view/supplyChain/index.html">供应链</a></li> | |||
| <li><a href="view/finance/index.html">金融服务</a></li> | |||
| <li><a href="view/directories/index.html">项目指南</a></li> | |||
| </ul> | |||
| <input type="text" placeholder="请输入关键词搜索" class="fl" /> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/newBusinessEntities/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <img src="static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../static/images/member.png" onclick="window.location='view/record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -62,4 +62,8 @@ var depositInformation = '/webSite/operators/depositInformation' //供求信息 | |||
| var productCategories = '/webSite/operators/productCategories' //产品分类 | |||
| var supplyChainAgent = '/webSite/operators/supplyChainAgent' //经纪人列表 | |||
| var supplyChainPurchaser = '/webSite/operators/supplyChainPurchaser' //采购商列表 | |||
| var dictType = '/webSite/operators/data/type' //首页-字典查询 | |||
| @@ -20,6 +20,23 @@ define(['jquery', "template", "Tools", 'LeftNav', 'dateTime'], function ($, temp | |||
| tools.doGet(dictType + '/Industrial_classification_type', {}, module.dictType , true); | |||
| var tabs = $('.tab').find('li'); | |||
| var informationBox = $("#listBox > div"); | |||
| tabs.on('click', function (e) { | |||
| e.preventDefault();//防止打开链接 | |||
| var index = $(this).data('id'); | |||
| tabs.removeClass('active'); | |||
| informationBox.css("display",'none'); | |||
| $(this).addClass('active'); | |||
| $('#'+index).css("display",'block') | |||
| }); | |||
| // $("#signStartTimeStr").datetime({ | |||
| // type: "date", | |||
| // value: [new Date().getFullYear(),new Date().getMonth()+1,new Date().getDate()], | |||
| @@ -51,6 +68,8 @@ define(['jquery', "template", "Tools", 'LeftNav', 'dateTime'], function ($, temp | |||
| module.dictType = function (data) { | |||
| module.data.industryClassOptions = data.data; | |||
| tools.doPost(entityMain, {}, module.entityMain , true); | |||
| tools.doPost(supplyChainAgent, {}, module.supplyChainAgent , true); | |||
| tools.doPost(supplyChainPurchaser, {}, module.supplyChainPurchaser , true); | |||
| } | |||
| //经营主体 | |||
| @@ -78,6 +97,56 @@ define(['jquery', "template", "Tools", 'LeftNav', 'dateTime'], function ($, temp | |||
| } | |||
| } | |||
| //经营主体 | |||
| module.supplyChainAgent = function (data) { | |||
| if (data.code == 200) { | |||
| var content = data.data; | |||
| // for ( var i = 0 ; i < content.length ; i++ ){ | |||
| // if (content[i].industryClassificationType != null){ | |||
| // var industryClassificationType = content[i].industryClassificationType.split(","); | |||
| // var secondArray = ""; | |||
| // for (var j = 0 ; j < industryClassificationType.length ; j++){ | |||
| // secondArray += module.selectDictLabel(module.data.industryClassOptions,industryClassificationType[j]); | |||
| // } | |||
| // content[i].industryClassificationType = secondArray; | |||
| // } | |||
| // console.log(content[i].industryClassificationType) | |||
| // content[i].masterMap = serverApi + content[i].masterMap ; | |||
| // | |||
| // } | |||
| module.data.agentList = content; | |||
| var agentData = template('agentData', module.data); | |||
| $("#agentContent").html(agentData); | |||
| } | |||
| } | |||
| //经营主体 | |||
| module.supplyChainPurchaser = function (data) { | |||
| if (data.code == 200) { | |||
| var content = data.data; | |||
| // for ( var i = 0 ; i < content.length ; i++ ){ | |||
| // if (content[i].industryClassificationType != null){ | |||
| // var industryClassificationType = content[i].industryClassificationType.split(","); | |||
| // var secondArray = ""; | |||
| // for (var j = 0 ; j < industryClassificationType.length ; j++){ | |||
| // secondArray += module.selectDictLabel(module.data.industryClassOptions,industryClassificationType[j]); | |||
| // } | |||
| // content[i].industryClassificationType = secondArray; | |||
| // } | |||
| // console.log(content[i].industryClassificationType) | |||
| // content[i].masterMap = serverApi + content[i].masterMap ; | |||
| // | |||
| // } | |||
| module.data.purchaserList = content; | |||
| var purchaserData = template('purchaserData', module.data); | |||
| $("#purchaserContent").html(purchaserData); | |||
| } | |||
| } | |||
| module.selectDictLabel = function (datas, value) { | |||
| var actions = []; | |||
| Object.keys(datas).some((key) => { | |||
| @@ -32,7 +32,7 @@ | |||
| <input type="text" placeholder="请输入关键词搜索" class="fl" /> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../static/images/member.png" class="block fl" alt=""/> | |||
| </div> | |||
| @@ -30,7 +30,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -44,9 +44,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -18,7 +18,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -31,9 +31,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -56,7 +56,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -69,9 +69,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -45,7 +45,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -58,9 +58,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -67,7 +67,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -80,9 +80,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -45,7 +45,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -58,9 +58,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -18,7 +18,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -31,9 +31,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -76,7 +76,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -89,9 +89,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -46,7 +46,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -59,9 +59,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -105,7 +105,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -118,9 +118,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -18,7 +18,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -31,9 +31,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -19,7 +19,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -32,9 +32,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -54,7 +54,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -67,9 +67,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -30,9 +30,9 @@ | |||
| <input type="text" placeholder="请输入关键词搜索" class="fl" /> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -29,7 +29,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -42,9 +42,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -18,7 +18,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -32,9 +32,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -36,7 +36,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -50,9 +50,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -18,7 +18,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -31,9 +31,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -12,13 +12,25 @@ | |||
| <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/supply.css" rel="stylesheet" type="text/css" /> | |||
| <style type="text/css"> | |||
| .goAdd{ | |||
| padding: 5px 18px; | |||
| background: #168a44; | |||
| color: #ffffff; | |||
| font-size: 16px; | |||
| border-radius: 25px; | |||
| width: 100px; | |||
| text-align: center; | |||
| cursor: pointer; | |||
| } | |||
| </style> | |||
| </head> | |||
| <body> | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -31,9 +43,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <!-- --> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -45,6 +57,7 @@ | |||
| <li class="active">供应信息</li> | |||
| <li>求购信息</li> | |||
| <li>农业服务</li> | |||
| <a class="fr goAdd" href="../../release.html">发布</a> | |||
| <div class="clear"></div> | |||
| </ul> | |||
| <div class="recommendSupply m-t-15"> | |||
| @@ -23,7 +23,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -36,9 +36,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -18,7 +18,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -31,9 +31,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -23,7 +23,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -36,9 +36,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -47,9 +47,9 @@ | |||
| <div class="w-1200"> | |||
| <p class="crumbs">首页 > 供应链</p> | |||
| <ul class="tab"> | |||
| <li class="active">主体名录</li> | |||
| <li>经纪人</li> | |||
| <li>采购商</li> | |||
| <li data-id="entityMain" class="active">主体名录</li> | |||
| <li data-id="agent">经纪人</li> | |||
| <li data-id="purchaser">采购商</li> | |||
| <div class="clear"></div> | |||
| </ul> | |||
| <div class="supplyType_left fl m-t-15"> | |||
| @@ -62,82 +62,235 @@ | |||
| <dd>现代化庄园</dd> | |||
| </dl> | |||
| </div> | |||
| <div class="fr m-t-15" style="width: 895px"> | |||
| <div class="searchBox"> | |||
| <p class="recommendTit"><i class="lvd"></i>查询</p> | |||
| <div class="l-h-30 m-t-10"> | |||
| <input type="text" placeholder="请输入关键词搜索" class="fl searchOne" /> | |||
| <div class="fr"> | |||
| <p class="fl color-666 m-r-5">地区</p> | |||
| <select class="fl m-r-20"> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| </select> | |||
| <select class="fl m-r-20"> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| </select> | |||
| <p class="fl searchBtn">查询</p> | |||
| <div id="listBox" class="fr m-t-15"> | |||
| <div id="entityMain" style="width: 895px"> | |||
| <div class="searchBox"> | |||
| <p class="recommendTit"><i class="lvd"></i>查询</p> | |||
| <div class="l-h-30 m-t-10"> | |||
| <input type="text" placeholder="请输入关键词搜索" class="fl searchOne" /> | |||
| <div class="fr"> | |||
| <p class="fl color-666 m-r-5">地区</p> | |||
| <select class="fl m-r-20"> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| </select> | |||
| <select class="fl m-r-20"> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| </select> | |||
| <p class="fl searchBtn">查询</p> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| </div> | |||
| <div class="directoriesList m-t-15"> | |||
| <div class="titBox"> | |||
| <div class="fl"> | |||
| <p class="font36 newBox_list_titBg">LIST</p> | |||
| <p class="newBox_list_tit">主体列表</p> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="clear"></div> | |||
| <script id="entityMainData" type="text/html"> | |||
| {{each entityMainList as value i}} | |||
| <li onclick="window.location='detail.html'"> | |||
| {{if value.masterMap.indexOf(null) == -1}} | |||
| <img src="{{value.masterMap}}" width="35%" style="height: 100%;" class="fl" alt=""/> | |||
| {{else}} | |||
| <img src="../../static/images/img7.jpg" width="35%" class="fl" alt=""/> | |||
| {{/if}} | |||
| <table class="fr" width="63%"> | |||
| <tr> | |||
| <td colspan="2" class="font16 color-333">{{value.entityName}}<i class="bq">合作社</i></td> | |||
| </tr> | |||
| <tr> | |||
| <td width="70">主营业务</td> | |||
| <td>{{value.industryClassificationType}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>负责人</td> | |||
| <td>{{value.principalName}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>地址</td> | |||
| <td>{{value.entityAddress}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>成立时间</td> | |||
| <td>{{value.registerTime}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>联系电话</td> | |||
| <td>{{value.tal}}</td> | |||
| </tr> | |||
| </table> | |||
| <div class="clear"></div> | |||
| <a href="detail.html" class="watchBtn">查看</a> | |||
| </li> | |||
| {{/each}} | |||
| <div class="clear"></div> | |||
| </script> | |||
| <ul id="entityMainContent"></ul> | |||
| </div> | |||
| </div> | |||
| <div class="directoriesList m-t-15"> | |||
| <div class="titBox"> | |||
| <div class="fl"> | |||
| <p class="font36 newBox_list_titBg">LIST</p> | |||
| <p class="newBox_list_tit">主体列表</p> | |||
| <div id="agent" style="width: 895px;display: none;"> | |||
| <div class="searchBox"> | |||
| <p class="recommendTit"><i class="lvd"></i>查询</p> | |||
| <div class="l-h-30 m-t-10"> | |||
| <input type="text" placeholder="请输入关键词搜索" class="fl searchOne" /> | |||
| <div class="fr"> | |||
| <p class="fl color-666 m-r-5">地区</p> | |||
| <select class="fl m-r-20"> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| </select> | |||
| <select class="fl m-r-20"> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| </select> | |||
| <p class="fl searchBtn">查询</p> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <a href="brokerApplication.html" class="fr searchBtn l-h-30" style="margin-top: 12px;color: #FFF;">申请</a> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <script id="entityMainData" type="text/html"> | |||
| {{each entityMainList as value i}} | |||
| <li onclick="window.location='detail.html'"> | |||
| {{if value.masterMap.indexOf(null) == -1}} | |||
| <div class="directoriesList m-t-15"> | |||
| <div class="titBox"> | |||
| <div class="fl"> | |||
| <p class="font36 newBox_list_titBg">LIST</p> | |||
| <p class="newBox_list_tit">经纪人列表</p> | |||
| </div> | |||
| <a href="brokerApplication.html" class="fr searchBtn l-h-30" style="margin-top: 12px;color: #FFF;">申请</a> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <script id="purchaserData" type="text/html"> | |||
| {{each purchaserList as value i}} | |||
| <li onclick="window.location='detail.html'"> | |||
| {{if value.masterMap.indexOf(null) == -1}} | |||
| <img src="{{value.masterMap}}" width="35%" style="height: 100%;" class="fl" alt=""/> | |||
| {{else}} | |||
| {{else}} | |||
| <img src="../../static/images/img7.jpg" width="35%" class="fl" alt=""/> | |||
| {{/if}} | |||
| <table class="fr" width="63%"> | |||
| <tr> | |||
| <td colspan="2" class="font16 color-333">{{value.entityName}}<i class="bq">合作社</i></td> | |||
| </tr> | |||
| <tr> | |||
| <td width="70">主营业务</td> | |||
| <td>{{value.industryClassificationType}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>负责人</td> | |||
| <td>{{value.principalName}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>地址</td> | |||
| <td>{{value.entityAddress}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>成立时间</td> | |||
| <td>{{value.registerTime}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>联系电话</td> | |||
| <td>{{value.tal}}</td> | |||
| </tr> | |||
| </table> | |||
| {{/if}} | |||
| <table class="fr" width="63%"> | |||
| <tr> | |||
| <td colspan="2" class="font16 color-333">{{value.entityName}}<i class="bq">合作社</i></td> | |||
| </tr> | |||
| <tr> | |||
| <td width="70">主营业务</td> | |||
| <td>{{value.industryClassificationType}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>负责人</td> | |||
| <td>{{value.principalName}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>地址</td> | |||
| <td>{{value.entityAddress}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>成立时间</td> | |||
| <td>{{value.registerTime}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>联系电话</td> | |||
| <td>{{value.tal}}</td> | |||
| </tr> | |||
| </table> | |||
| <div class="clear"></div> | |||
| <a href="detail.html" class="watchBtn">查看</a> | |||
| </li> | |||
| {{/each}} | |||
| <div class="clear"></div> | |||
| <a href="detail.html" class="watchBtn">查看</a> | |||
| </li> | |||
| {{/each}} | |||
| <div class="clear"></div> | |||
| </script> | |||
| <ul id="entityMainContent"></ul> | |||
| </script> | |||
| <ul id="purchaserContent"></ul> | |||
| </div> | |||
| </div> | |||
| <div id="purchaser" style="width: 895px;display: none;"> | |||
| <div class="searchBox"> | |||
| <p class="recommendTit"><i class="lvd"></i>查询</p> | |||
| <div class="l-h-30 m-t-10"> | |||
| <input type="text" placeholder="请输入关键词搜索" class="fl searchOne" /> | |||
| <div class="fr"> | |||
| <p class="fl color-666 m-r-5">地区</p> | |||
| <select class="fl m-r-20"> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| </select> | |||
| <select class="fl m-r-20"> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| <option>张村镇</option> | |||
| </select> | |||
| <p class="fl searchBtn">查询</p> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| </div> | |||
| <div class="directoriesList m-t-15"> | |||
| <div class="titBox"> | |||
| <div class="fl"> | |||
| <p class="font36 newBox_list_titBg">LIST</p> | |||
| <p class="newBox_list_tit">采购商列表</p> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <script id="agentData" type="text/html"> | |||
| {{each agentList as value i}} | |||
| <li onclick="window.location='detail.html'"> | |||
| {{if value.masterMap.indexOf(null) == -1}} | |||
| <img src="{{value.masterMap}}" width="35%" style="height: 100%;" class="fl" alt=""/> | |||
| {{else}} | |||
| <img src="../../static/images/img7.jpg" width="35%" class="fl" alt=""/> | |||
| {{/if}} | |||
| <table class="fr" width="63%"> | |||
| <tr> | |||
| <td colspan="2" class="font16 color-333">{{value.entityName}}<i class="bq">合作社</i></td> | |||
| </tr> | |||
| <tr> | |||
| <td width="70">主营业务</td> | |||
| <td>{{value.industryClassificationType}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>负责人</td> | |||
| <td>{{value.principalName}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>地址</td> | |||
| <td>{{value.entityAddress}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>成立时间</td> | |||
| <td>{{value.registerTime}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>联系电话</td> | |||
| <td>{{value.tal}}</td> | |||
| </tr> | |||
| </table> | |||
| <div class="clear"></div> | |||
| <a href="detail.html" class="watchBtn">查看</a> | |||
| </li> | |||
| {{/each}} | |||
| <div class="clear"></div> | |||
| </script> | |||
| <ul id="agentContent"></ul> | |||
| </div> | |||
| </div> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -111,7 +111,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -124,9 +124,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -46,7 +46,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -59,9 +59,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -111,7 +111,7 @@ | |||
| <div class="main bg-f4" id="page"> | |||
| <!-- 顶部导航 --> | |||
| <div class="topTab"> | |||
| <div class="w-1300"> | |||
| <div class="w-1200"> | |||
| <p class="fl">农村经营主体综合供求信息网</p> | |||
| <ul class="fl m-l-30"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| @@ -124,9 +124,9 @@ | |||
| </ul> | |||
| <div class="fr"> | |||
| <img src="../../static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;cursor: pointer;" alt="" onclick="window.location='view/map/index.html'"/> | |||
| <a href="../release.html" class="fl m-r-20 upBtn">发布</a> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-20" style="margin-top: 6px;" alt=""/> | |||
| <img src="../../../static/images/member.png" class="block fl" alt=""/> | |||
| <img src="../../../static/images/member.png" onclick="window.location='../record/information.html'" class="block fl" alt=""/> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||