@@ -38,7 +38,7 @@ | |||||
<img src="static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;" alt="" onclick="window.location='view/map/index.html'"/> | <img src="static/images/icon_map.png" class="fl m-r-20" style="margin-top: 9px;" alt="" onclick="window.location='view/map/index.html'"/> | ||||
<a href="release.html" class="fl m-r-20 upBtn">发布</a> | <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/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/supplyList.html'" class="block fl" alt=""/> | |||||
<img src="../static/images/member.png" onclick="window.location='view/record/information.html'" class="block fl" alt=""/> | |||||
</div> | </div> | ||||
<div class="clear"></div> | <div class="clear"></div> | ||||
</div> | </div> | ||||
@@ -42,11 +42,6 @@ input[type = 'radio']{ | |||||
padding: 15px 0px; | padding: 15px 0px; | ||||
line-height: 1; | line-height: 1; | ||||
} | } | ||||
.recommendTit p{ | |||||
display: inline-block; | |||||
font-size: 14px; | |||||
line-height: 20px; | |||||
} | |||||
.lvd{ | .lvd{ | ||||
width: 12px; | width: 12px; | ||||
height: 12px; | height: 12px; | ||||
@@ -0,0 +1,78 @@ | |||||
/** | |||||
* Created by Administrator on 2021/4/5. | |||||
*/ | |||||
define(['jquery', "template", "Tools", "echarts", 'swiper'], function ($, template, Tools, echarts, swiper) { | |||||
//数据存储 | |||||
var module = { | |||||
data: { | |||||
}, | |||||
}; | |||||
var tools = new Tools(); | |||||
module.init = function (page) { | |||||
var tabs = $('.tab').find('li'); | |||||
var tabsSecond = $('.tabSecond').find('li'); | |||||
var assets = $('.assets_table').find('a'); | |||||
var informationBox = $("#information_box > div"); | |||||
tabs.on('click', function (e) { | |||||
e.preventDefault();//防止打开链接 | |||||
var index = $(this).data('index'); | |||||
$('.tabSecond').css("display",'none'); | |||||
if(index == 1 || index == 10){ | |||||
$('.tabSecond').css("display",'block'); | |||||
} | |||||
tabs.removeClass('active'); | |||||
tabsSecond.removeClass('active'); | |||||
informationBox.css("display",'none'); | |||||
$(this).addClass('active'); | |||||
$('#'+index).css("display",'block') | |||||
$($(".tabSecond").children("li").get(0)).addClass('active'); | |||||
}); | |||||
tabsSecond.on('click', function (e) { | |||||
e.preventDefault();//防止打开链接 | |||||
var index = $(this).data('index'); | |||||
console.log(index) | |||||
tabsSecond.removeClass('active'); | |||||
informationBox.css("display",'none'); | |||||
$(this).addClass('active'); | |||||
$('#'+index).css("display",'block') | |||||
}); | |||||
assets.on('click', function (e) { | |||||
e.preventDefault();//防止打开链接 | |||||
var index = $(this).data('index'); | |||||
console.log(index) | |||||
informationBox.css("display",'none'); | |||||
$('#'+index).css("display",'block') | |||||
}); | |||||
}; | |||||
return module; | |||||
}); |
@@ -47,14 +47,16 @@ | |||||
<div class="partition"></div> | <div class="partition"></div> | ||||
<div class="w-1200"> | <div class="w-1200"> | ||||
<p class="crumbs">首页 > 我的 > 我的项目</p> | <p class="crumbs">首页 > 我的 > 我的项目</p> | ||||
<ul class="tab"> | |||||
<li><a href="supplyList.html">记录查看</a></li> | |||||
<li class="active"><a href="projectList.html">我的项目</a></li> | |||||
<li><a href="information.html">身份信息</a></li> | |||||
<!-- <li onclick="window.location='trainList.html'">培训活动</li>--> | |||||
<div class="clear"></div> | |||||
</ul> | |||||
<div class="searchBox m-t-15" style="padding: 25px 35px;"> | |||||
<div class="supplyType_left fl"> | |||||
<p class="recommendTit"><i class="lvd"></i>信息设置</p> | |||||
<dl> | |||||
<dd><a href="information.html">身份信息</a></dd> | |||||
<dd><a href="supplyList.html">记录查看</a></dd> | |||||
<dd><a href="projectList.html" class="active">我的项目</a></dd> | |||||
<dd><a href="updatePassword.html">密码修改</a></dd> | |||||
</dl> | |||||
</div> | |||||
<div class="searchBox fr" style="padding: 25px 35px;width: 895px" > | |||||
<p class="recommendTit" style="padding-top: 0;"><i class="lvd"></i>查询</p> | <p class="recommendTit" style="padding-top: 0;"><i class="lvd"></i>查询</p> | ||||
<div class="l-h-30 m-t-10"> | <div class="l-h-30 m-t-10"> | ||||
<input type="text" placeholder="请输入关键词搜索" class="fl searchOne" /> | <input type="text" placeholder="请输入关键词搜索" class="fl searchOne" /> | ||||
@@ -78,7 +80,7 @@ | |||||
<div class="clear"></div> | <div class="clear"></div> | ||||
</div> | </div> | ||||
</div> | </div> | ||||
<div class="supplyList m-t-15"> | |||||
<div style="width: 895px" class="supplyList m-t-15 fr"> | |||||
<p class="recommendTit"><i class="lvd"></i>已申报项目列表</p> | <p class="recommendTit"><i class="lvd"></i>已申报项目列表</p> | ||||
<ul class="supplyList_list"> | <ul class="supplyList_list"> | ||||
<li> | <li> | ||||
@@ -149,6 +151,7 @@ | |||||
</li> | </li> | ||||
</ul> | </ul> | ||||
</div> | </div> | ||||
<div class="clear"></div> | |||||
</div> | </div> | ||||
<!--底部链接 --> | <!--底部链接 --> | ||||
@@ -44,6 +44,9 @@ | |||||
.projectList ul li table tr td:last-child{ | .projectList ul li table tr td:last-child{ | ||||
color: #666666; | color: #666666; | ||||
} | } | ||||
.tab{ | |||||
width: 895px; | |||||
} | |||||
</style> | </style> | ||||
</head> | </head> | ||||
@@ -79,17 +82,17 @@ | |||||
<div class="partition"></div> | <div class="partition"></div> | ||||
<div class="w-1200"> | <div class="w-1200"> | ||||
<p class="crumbs">首页 > 我的 > 记录查看</p> | <p class="crumbs">首页 > 我的 > 记录查看</p> | ||||
<ul class="tab"> | |||||
<li class="active"><a href="supplyList.html">记录查看</a></li> | |||||
<li><a href="projectList.html">我的项目</a></li> | |||||
<li><a href="information.html">身份信息</a></li> | |||||
<!-- <li onclick="window.location='trainList.html'">培训活动</li>--> | |||||
<div class="clear"></div> | |||||
</ul> | |||||
<div class="supplyType_left fl m-t-15"> | |||||
<p class="recommendTit"><i class="lvd"></i>业务分类</p> | |||||
<div class="supplyType_left fl"> | |||||
<p class="recommendTit"><i class="lvd"></i>信息设置</p> | |||||
<dl> | <dl> | ||||
<dd | |||||
<dd><a href="information.html">身份信息</a></dd> | |||||
<dd><a href="supplyList.html" class="active">记录查看</a></dd> | |||||
<dd><a href="projectList.html">我的项目</a></dd> | |||||
<dd><a href="updatePassword.html">密码修改</a></dd> | |||||
</dl> | |||||
</div> | |||||
<ul class="tab fr"> | |||||
<li | |||||
class="active" | class="active" | ||||
id="supplyBtn" | id="supplyBtn" | ||||
onclick=" | onclick=" | ||||
@@ -98,8 +101,8 @@ | |||||
document.getElementById('agriculturalBtn').className = ''; | document.getElementById('agriculturalBtn').className = ''; | ||||
this.className = 'active'; | this.className = 'active'; | ||||
" | " | ||||
>供求信息</dd> | |||||
<dd | |||||
>供求信息</li> | |||||
<li | |||||
id="agriculturalBtn" | id="agriculturalBtn" | ||||
onclick=" | onclick=" | ||||
document.getElementById('supply').style.display = 'none'; | document.getElementById('supply').style.display = 'none'; | ||||
@@ -107,11 +110,12 @@ | |||||
document.getElementById('supplyBtn').className = ''; | document.getElementById('supplyBtn').className = ''; | ||||
this.className = 'active'; | this.className = 'active'; | ||||
" | " | ||||
>农技服务</dd> | |||||
</dl> | |||||
</div> | |||||
<div class="fr m-t-15" id="supply" style="width: 895px"> | |||||
<div class="searchBox"> | |||||
>农技服务</li> | |||||
<div class="clear"></div> | |||||
</ul> | |||||
<div class="fr" id="supply" style="width: 895px"> | |||||
<div class="searchBox m-t-15"> | |||||
<p class="recommendTit"><i class="lvd"></i>供求信息</p> | <p class="recommendTit"><i class="lvd"></i>供求信息</p> | ||||
<div class="l-h-30 m-t-10"> | <div class="l-h-30 m-t-10"> | ||||
<input type="text" placeholder="请输入关键词搜索" class="fl searchOne" /> | <input type="text" placeholder="请输入关键词搜索" class="fl searchOne" /> | ||||
@@ -0,0 +1,161 @@ | |||||
<!DOCTYPE html | |||||
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="zh-CN" xml:lang="zh-CN"> | |||||
<head> | |||||
<meta charset="utf-8"> | |||||
<title>农燊高科</title> | |||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |||||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||||
<meta name="keywords" content="" /> | |||||
<meta name="description" cxontent="" /> | |||||
<link href="../../static/css/main.css" rel="stylesheet" type="text/css" /> | |||||
<link href="../../static/css/index.css" rel="stylesheet" type="text/css" /> | |||||
<link href="../../static/css/record.css" rel="stylesheet" type="text/css" /> | |||||
<link href="../../static/css/supply.css" rel="stylesheet" type="text/css" /> | |||||
<style> | |||||
.projectList { | |||||
background: #FFFFFF; | |||||
padding: 12px 35px; | |||||
border-radius: 12px; | |||||
} | |||||
.detail_box_comm tr td{ | |||||
padding: 8px 20px !important; | |||||
} | |||||
</style> | |||||
</head> | |||||
<body> | |||||
<div class="main bg-f4" id="page"> | |||||
<!-- 顶部导航 --> | |||||
<div class="topTab"> | |||||
<div class="w-1300"> | |||||
<p class="fl">农村经营主体综合供求信息网</p> | |||||
<ul class="fl m-l-30"> | |||||
<li><a href="../../index.html">首页</a></li> | |||||
<li><a href="../supply/index.html">供求信息</a></li> | |||||
<li><a href="../train/index.html">农技服务</a></li> | |||||
<li><a href="../supplyChain/index.html">供应链</a></li> | |||||
<li><a href="../finance/index.html">金融服务</a></li> | |||||
<li><a href="../directories/index.html">项目指南</a></li> | |||||
<li><a href="../resources/index.html">资源库</a></li> | |||||
</ul> | |||||
<div class="fr"> | |||||
<select class="fl m-r-20"> | |||||
<option>张村镇</option> | |||||
<option>张村镇</option> | |||||
<option>张村镇</option> | |||||
<option>张村镇</option> | |||||
</select> | |||||
<a href="javascript:void(0);" 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> | |||||
<div class="clear"></div> | |||||
</div> | |||||
</div> | |||||
<div class="partition"></div> | |||||
<div class="w-1200"> | |||||
<p class="crumbs">首页 > 我的 > 身份信息</p> | |||||
<div class="supplyType_left fl"> | |||||
<p class="recommendTit"><i class="lvd"></i>信息设置</p> | |||||
<dl> | |||||
<dd><a href="information.html">身份信息</a></dd> | |||||
<dd><a href="supplyList.html">记录查看</a></dd> | |||||
<dd><a href="projectList.html">我的项目</a></dd> | |||||
<dd><a href="supplyList.html" class="active">密码修改</a></dd> | |||||
<!-- <dd--> | |||||
<!-- class="active"--> | |||||
<!-- id="supplyBtn"--> | |||||
<!-- onclick="--> | |||||
<!-- document.getElementById('supply').style.display = 'block';--> | |||||
<!-- document.getElementById('agricultural').style.display = 'none';--> | |||||
<!-- document.getElementById('agriculturalBtn').className = '';--> | |||||
<!-- this.className = 'active';--> | |||||
<!-- "--> | |||||
<!-- >经营主体信息</dd>--> | |||||
<!-- <dd--> | |||||
<!-- id="agriculturalBtn"--> | |||||
<!-- onclick="--> | |||||
<!-- document.getElementById('supply').style.display = 'none';--> | |||||
<!-- document.getElementById('agricultural').style.display = 'block';--> | |||||
<!-- document.getElementById('supplyBtn').className = '';--> | |||||
<!-- this.className = 'active';--> | |||||
<!-- "--> | |||||
<!-- >采购商信息</dd>--> | |||||
<!-- <dd--> | |||||
<!-- id="Btn"--> | |||||
<!-- onclick="--> | |||||
<!-- document.getElementById('supply').style.display = 'none';--> | |||||
<!-- document.getElementById('agricultural').style.display = 'block';--> | |||||
<!-- document.getElementById('supplyBtn').className = '';--> | |||||
<!-- this.className = 'active';--> | |||||
<!-- "--> | |||||
<!-- >经纪人</dd>--> | |||||
</dl> | |||||
</div> | |||||
<div class="fr" id="supply" style="width: 895px"> | |||||
<!-- 采购商信息 --> | |||||
<div class="projectList"> | |||||
<p class="recommendTit"><i class="lvd"></i>修改密码</p> | |||||
<div class="detail_box_comm"> | |||||
<table width="100%" cellpadding="0" cellspacing="0"> | |||||
<tr> | |||||
<td width="50%" align="right">原登录密码</td> | |||||
<td width="50%"><input type="text" value="" placeholder="请输入原登录密码"/></td> | |||||
</tr> | |||||
<tr> | |||||
<td align="right">新登录密码</td> | |||||
<td><input type="text" value="" placeholder="请输入新登录密码"/></td> | |||||
</tr> | |||||
<tr> | |||||
<td align="right">确认登录密码</td> | |||||
<td><input type="text" value="" placeholder="请确认登录密码"/></td> | |||||
</tr> | |||||
</table> | |||||
<div class="clear"></div> | |||||
</div> | |||||
<div class="submitBtn"> | |||||
<input type="button" style="display: none;" value="保存" onclick="document.getElementById('failDialog').style.display = 'block'"/> | |||||
<input type="button" value="保存"/> | |||||
<div class="clear"></div> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<div class="clear"></div> | |||||
</div> | |||||
<!--底部链接 --> | |||||
<div class="bottomLink"> | |||||
<div class="w-1200"> | |||||
<div class="w-1000 fl"> | |||||
<p class="bottomLink-tit"><img src="../static/images/newBusinessEntities/icon_link.png" alt=""/>友情链接</p> | |||||
<div class="bottomLink-linkList"> | |||||
<a href="javascript:void(0);" target="_blank">农燊高科新型经营主体网站</a> | |||||
<a href="javascript:void(0);" target="_blank">农燊高科新型经营主体网站</a> | |||||
<a href="javascript:void(0);" target="_blank">农燊高科新型经营主体网站</a> | |||||
<a href="javascript:void(0);" target="_blank">农燊高科新型经营主体网站</a> | |||||
<a href="javascript:void(0);" target="_blank">农燊高科新型经营主体网站</a> | |||||
<a href="javascript:void(0);" target="_blank">农燊高科新型经营主体网站</a> | |||||
<a href="javascript:void(0);" target="_blank">农燊高科新型经营主体网站</a> | |||||
<a href="javascript:void(0);" target="_blank">农燊高科新型经营主体网站</a> | |||||
<a href="javascript:void(0);" target="_blank">农燊高科新型经营主体网站</a> | |||||
<a href="javascript:void(0);" target="_blank">农燊高科新型经营主体网站</a> | |||||
</div> | |||||
<p class="ba" id="webConfigRecord">鲁公网安备 12011502000077号 京ICP备 17061038号-1</p> | |||||
<p class="ba" id="webConfigAddress">左云县农村产权交易网 联系地址:北京紫竹书院技术基地 联系电话:400-060-123</p> | |||||
</div> | |||||
<div class="ewm fr"> | |||||
<img src="../../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||||
<p class="ewmtit">关注公众号 了解详情</p> | |||||
</div> | |||||
<div class="clear"></div> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
</body> | |||||
<!--<script src="../static/js/common/require.js" data-main="../static/js/common/main.js?t=101" id="require-page"--> | |||||
<!-- target-module="../static/js/project/index.js" defer type="text/javascript"></script>--> | |||||
</html> |