| @@ -55,7 +55,7 @@ | |||
| <!--LOGO search --> | |||
| <div class="logoSearch w-1200"> | |||
| <div class="wid50 logoSearch-div fl"> | |||
| <img src="./static/images/logo.png" class="fl" alt="左云县农村产权交易网" onclick="goIndex()" /> | |||
| <img src="./static/images/logo.png" class="fl" alt="" onclick="goIndex()" /> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
| <div class="clear"></div> | |||
| </div> | |||
| @@ -133,24 +133,22 @@ | |||
| <script id="deptTypeData" type="text/html"> | |||
| {{each deptTypeList as value i}} | |||
| <li> | |||
| <a href="javascript:void(0)">{{value.dictLabel}}</a> | |||
| <a href="javascript:goListing()">{{value.dictLabel}}</a> | |||
| </li> | |||
| {{/each}} | |||
| <li><a href="javascript:void(0)">更多类型></a></li> | |||
| <li><a href="javascript:goListing()">更多类型></a></li> | |||
| </script> | |||
| <ul id="deptTypeContent"> | |||
| </ul> | |||
| <ul id="deptTypeContent"></ul> | |||
| </div> | |||
| <div class="bannerLeft-buttom"> | |||
| <p class="font20 bannerLeft-tit02">标的物所在地</p> | |||
| <script id="deptLocationData" type="text/html"> | |||
| {{each deptLocationList as value i}} | |||
| <li> | |||
| <a href="javascript:void(0)">{{value.deptName}}</a> | |||
| <a href="javascript:goListing()">{{value.deptName}}</a> | |||
| </li> | |||
| {{/each}} | |||
| <li><a href="javascript:void(0)">更多类型></a></li> | |||
| <li><a href="javascript:goListing()">更多类型></a></li> | |||
| </script> | |||
| <ul id="deptLocationContent"> | |||
| @@ -407,15 +405,17 @@ | |||
| </div> | |||
| </div> | |||
| <div class="w-372 centerRight fr"> | |||
| <div class="centerRight-list0"> | |||
| <script id="statisticsData" type="text/html"> | |||
| <p> | |||
| <span>最新</span><span>土地挂牌价格走势</span> | |||
| </p> | |||
| <p>当前均价:<i></i>650元/亩/年</p> | |||
| <p>相较去年:<i></i><span>上升15.2%</span></p> | |||
| <p>当前均价:<i></i>{{nowPriceAvg}}元/亩/年</p> | |||
| <p>相较去年:<i></i><span class="{{priceRate < 0 ? 'down':''}}">{{priceRate}}%</span></p> | |||
| <div id="chart" style="width: 100%;height: 250px;"></div> | |||
| <p>本站“均价”统计自该网站已挂牌土地类项目数据</p> | |||
| </div> | |||
| </script> | |||
| <div class="centerRight-list0" id="statisticsContent"></div> | |||
| <div class="centerRight-list1"> | |||
| <p class="centerRight-list1-tit01"><i class="el-icon-s-data"></i>项目查询</p> | |||
| @@ -399,6 +399,10 @@ | |||
| color: #d21313; | |||
| } | |||
| .centerRight-list0 .down{ | |||
| color: #007b76; | |||
| } | |||
| .centerRight-list0 p:last-child { | |||
| text-align: center; | |||
| color: #adadad; | |||
| @@ -80,7 +80,7 @@ | |||
| width: 12%; | |||
| } | |||
| .userTable tr td input[type="text"],.userTable tr td input[type="button"]{ | |||
| .userTable tr td input[type="text"],.userTable tr td input[type="button"],.userTable tr td input[type="password"]{ | |||
| height: 36px; | |||
| border: 1px solid #e3e3e3; | |||
| width: 100%; | |||
| @@ -78,12 +78,15 @@ | |||
| border-bottom: 1px solid #e3e3e3; | |||
| } | |||
| .userTable table tr:last-child td input[type='button']{ | |||
| .userTable table tr:last-child td p{ | |||
| border-radius: 0; | |||
| width: 90%; | |||
| width: 30%; | |||
| margin-left: 10px; | |||
| background: #007b76; | |||
| color: #ffffff; | |||
| line-height: 35px; | |||
| text-align: center; | |||
| cursor: pointer; | |||
| } | |||
| .supplyTable{ | |||
| @@ -153,4 +153,5 @@ require(["jquery", "Tools","addressApi"], function ($, Tools) { | |||
| var searchAllTitle = $('#searchAllTitle').val(); | |||
| tools.skip('view/new/newList.html?title='+searchAllTitle); | |||
| } | |||
| }) | |||
| @@ -5,7 +5,7 @@ define(['jquery', 'dialog'], function ($, dialog) { | |||
| this.description = "这是一个工具类"; | |||
| } | |||
| var ajaxJsUrl = "/api"; | |||
| var module = {}; | |||
| $.extend(Tool.prototype, { | |||
| /** | |||
| * ajax post | |||
| @@ -16,6 +16,8 @@ define(['jquery', 'dialog'], function ($, dialog) { | |||
| */ | |||
| doPost: function (url, data, cb, Bearer) { | |||
| var _this = this; | |||
| data.deptId = 100 ; | |||
| console.log(JSON.stringify(data)) | |||
| var headAttribute = ''; | |||
| if (Bearer && Bearer == true || _this.getCookie('Admin-Token') == '') { | |||
| headAttribute = function (xhr) { | |||
| @@ -106,7 +108,8 @@ define(['jquery', 'dialog'], function ($, dialog) { | |||
| */ | |||
| doGet: function (uri, data, cb, Bearer) { | |||
| var _this = this; | |||
| var url = ajaxJsUrl + uri + '?'; | |||
| var url = ajaxJsUrl + uri + '?deptId=100&'; | |||
| console.log(url); | |||
| var headAttribute = '' | |||
| if (Bearer && Bearer == true || _this.getCookie('Admin-Token') == '') { | |||
| headAttribute = function (xhr) { | |||
| @@ -341,7 +344,7 @@ define(['jquery', 'dialog'], function ($, dialog) { | |||
| } | |||
| }, | |||
| /** | |||
| * skip 获取时间 | |||
| * getNowFormatDate 获取时间 | |||
| * @param | |||
| */ | |||
| getNowFormatDate:function () { | |||
| @@ -372,7 +375,26 @@ define(['jquery', 'dialog'], function ($, dialog) { | |||
| console.log(currentdate) | |||
| return currentdate; | |||
| }, | |||
| /** | |||
| * getWebConfig 网站配置信息 | |||
| * @param | |||
| */ | |||
| getWebConfig: function () { | |||
| this.doGet(webConfig, {}, this.webConfigInformation, true) | |||
| }, | |||
| /** | |||
| * webConfigInformation 网站配置信息 | |||
| * @param | |||
| */ | |||
| webConfigInformation : function (data) { | |||
| console.log(data) | |||
| if (data.code == 200) { | |||
| var content = data.data; | |||
| $("#webConfigName").html(content[0].configValue); | |||
| $("#webConfigRecord").html(content[1].configValue + content[2].configValue); | |||
| $("#webConfigAddress").html(content[0].configValue+' '+content[3].configValue); | |||
| } | |||
| }, | |||
| }); | |||
| return Tool; | |||
| }); | |||
| @@ -14,7 +14,8 @@ define(['jquery', "template", "Tools", "announApi", "paging"], function ($, temp | |||
| //成交公告 | |||
| tools.doGet(announDetail+'/'+getQueryVariable('id'), {}, module.announInformation,true); | |||
| //网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
| tools.getWebConfig(); | |||
| }; | |||
| //获取地址栏参数 | |||
| @@ -37,8 +37,9 @@ define(['jquery', "template", "Tools", "announApi", "paging"], function ($, temp | |||
| //鉴证公告 | |||
| tools.doGet(attestationList, {deptId:100,pageNum:module.data.pageNum,pageSize:module.data.pageSize}, module.attestationInformation,true); | |||
| } | |||
| //网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
| tools.getWebConfig(); | |||
| }; | |||
| //获取地址栏参数 | |||
| function getQueryVariable(variable){ | |||
| var query = window.location.search.substring(1); | |||
| @@ -14,7 +14,8 @@ define(['jquery', "template", "Tools", "announApi", "paging"], function ($, temp | |||
| //鉴证公告 | |||
| tools.doGet(attestationDetail+'/'+getQueryVariable('id'), {}, module.announInformation,true); | |||
| //网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
| tools.getWebConfig(); | |||
| }; | |||
| //获取地址栏参数 | |||
| @@ -61,6 +61,9 @@ define(['jquery', "template", "Tools", "biddingApi", "itemsApi", "paging",'dateT | |||
| //标的物所在地 | |||
| tools.doGet(webDept, {deptId:''}, module.deptLocation, true); | |||
| //网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
| tools.getWebConfig(); | |||
| $("#signStartTimeStr").datetime({ | |||
| type:"date", | |||
| value:[2019,9,31], | |||
| @@ -51,6 +51,8 @@ define(['jquery', "template", "Tools", "demandApi", "paging"], function ($, temp | |||
| module.demandInformation,true | |||
| ); | |||
| //网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
| tools.getWebConfig(); | |||
| }; | |||
| //个人供求数据 | |||
| @@ -121,7 +121,7 @@ define(['jquery', "template", "Tools", "echarts", 'swiper'], function ($, templa | |||
| tools.doGet(webDeptType+"/project_type", {}, module.deptTypeSelect, true); | |||
| //网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
| tools.doGet(webConfig, {}, module.webConfigInformation, true); | |||
| tools.getWebConfig(); | |||
| //底部友情链接 | |||
| tools.doGet(friendsLinks, {}, module.bottomFriendsLinks, true); | |||
| @@ -192,7 +192,11 @@ define(['jquery', "template", "Tools", "echarts", 'swiper'], function ($, templa | |||
| module.statisticsContent = function(data){ | |||
| console.log(module.option) | |||
| console.log(data.priceAvgList) | |||
| console.log(data) | |||
| module.data.nowPriceAvg = data.nowPriceAvg; | |||
| module.data.priceRate = data.priceRate; | |||
| var statisticsData = template('statisticsData', module.data); | |||
| $("#statisticsContent").html(statisticsData); | |||
| for (var i = 0 ; i < data.priceAvgList.length ; i++){ | |||
| module.option.xAxis.data[i] = data.priceAvgList[i].year | |||
| module.option.series[0].data[i] = data.priceAvgList[i].price | |||
| @@ -24,7 +24,8 @@ define(['jquery', "template", "Tools", "interactApi", "paging"], function ($, te | |||
| //互动交流 | |||
| tools.doGet(interactList, {deptId:100,pageNum:module.data.pageNum,pageSize:module.data.pageSize}, module.interactInformation,true); | |||
| //网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
| tools.getWebConfig(); | |||
| }; | |||
| //新闻资讯数据 | |||
| @@ -16,6 +16,8 @@ define(['jquery', "template", "Tools", 'swiper', 'itemsApi'], function ($, templ | |||
| document.getElementById('userBank').value = tools.getCookie('bankAddress'); | |||
| document.getElementById('bankId').value = tools.getCookie('bankCardNum'); | |||
| document.getElementById('idCard').value = tools.getCookie('idCardNum'); | |||
| //网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
| tools.getWebConfig(); | |||
| }; | |||
| //获取地址栏参数 | |||
| @@ -19,7 +19,8 @@ define(['jquery', "template", "Tools", 'swiper', 'itemsApi'], function ($, templ | |||
| //项目基本信息 | |||
| tools.doGet(showImg + '/'+getQueryVariable('id'), {}, module.showImgInformation,true); | |||
| //网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
| tools.getWebConfig(); | |||
| }; | |||
| @@ -79,6 +79,9 @@ define(['jquery', "template", "Tools", "itemsApi", "paging",'dateTime'], functio | |||
| //标的物所在地 | |||
| tools.doGet(webDept, {deptId:''}, module.deptLocation, true); | |||
| //网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
| tools.getWebConfig(); | |||
| $("#signStartTimeStr").datetime({ | |||
| type:"date", | |||
| value:[2019,9,31], | |||
| @@ -28,6 +28,8 @@ define(['jquery', "template", "Tools", "newApi", "paging"], function ($, templat | |||
| //新闻资讯 | |||
| tools.doGet(newList, {number:2,deptId:100,pageNum:module.data.pageNum,pageSize:module.data.pageSize}, module.NewsInformation,true); | |||
| } | |||
| //网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
| tools.getWebConfig(); | |||
| }; | |||
| //获取地址栏参数 | |||
| @@ -16,6 +16,8 @@ define(['jquery', "template", "Tools", "newApi"], function ($, template, Tools ) | |||
| //新闻资讯 | |||
| tools.doGet(newDetail + '/'+getQueryVariable('id'), {}, module.NewsInformation,true); | |||
| //网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
| tools.getWebConfig(); | |||
| }; | |||
| //获取地址栏参数 | |||
| @@ -48,6 +48,8 @@ define(['jquery', "template", "Tools", "policyApi", "paging"], function ($, temp | |||
| //资料下载 | |||
| tools.doGet(newList, {number:5,deptId:100,pageNum:module.data.pageNum,pageSize:module.data.pageSize}, module.downloadInformation,true); | |||
| } | |||
| //网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
| tools.getWebConfig(); | |||
| }; | |||
| @@ -38,6 +38,9 @@ define(['jquery', "template", "Tools", "user", "paging","cupload","ajaxUploadIma | |||
| //个人中心选项卡鼠标悬浮 | |||
| module.userListHover(); | |||
| //网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
| tools.getWebConfig(); | |||
| }; | |||
| //个人中心用户信息 | |||
| @@ -89,8 +92,6 @@ define(['jquery', "template", "Tools", "user", "paging","cupload","ajaxUploadIma | |||
| //我的竞价 | |||
| tools.doGet(userBidding, {memberId:content.id,pageNum:module.data.pageNum,pageSize:module.data.pageSize}, module.bidding); | |||
| //个人资料提交 | |||
| $('#userAction').on('click', module.formAction) | |||
| $('#bankAction').on('click', module.formAction) | |||
| $('#supplyAction').on('click', module.supplyAction) | |||
| $('#releaseAction').on('click', module.releaseAction) | |||
| //获取附件的值 | |||
| @@ -232,6 +233,10 @@ define(['jquery', "template", "Tools", "user", "paging","cupload","ajaxUploadIma | |||
| document.getElementById('supplyInformation').style.display = 'none'; | |||
| document.getElementById('consultingInformation').style.display = 'none'; | |||
| document.getElementById('biddingInformation').style.display = 'none'; | |||
| document.getElementById('releaseSupply').style.display = 'none'; | |||
| document.getElementById('release').style.display = 'none'; | |||
| if(type == 'icon-list1'){ | |||
| document.getElementById('userInformation').style.display = 'block'; | |||
| } | |||
| @@ -285,46 +290,54 @@ define(['jquery', "template", "Tools", "user", "paging","cupload","ajaxUploadIma | |||
| } | |||
| //个人用户资料修改 | |||
| module.formAction = function (){ | |||
| formAction = function (type){ | |||
| var data = {}; | |||
| //var password = $('#password').val(); | |||
| //用户信息 | |||
| var companyName = $('#companyName').val(); | |||
| var idCardNum = $('#idCardNum').val(); | |||
| var realname = $('#realname').val(); | |||
| var companyCode = $('#companyCode').val(); | |||
| var companyNature = $('#companyNature').val(); | |||
| var companyScope = $('#companyScope').val(); | |||
| var companyTimeLimit = $('#companyTimeLimit').val(); | |||
| var companySetupTime = $('#companySetupTime').val(); | |||
| var companyCapital = $('#companyCapital').val(); | |||
| var companyLicense = $('#companyLicense').val(); | |||
| var address = $('#address').val(); | |||
| //银行卡信息 | |||
| var bankCardName = $('#bankCardName').val(); | |||
| var bankCardNum = $('#bankCardNum').val(); | |||
| var bankAddress = $('#bankAddress').val(); | |||
| if(type == 'company'){ | |||
| //公司用户信息 | |||
| var companyName = $('#companyName').val(); | |||
| var idCardNum = $('#idCardNum').val(); | |||
| var realname = $('#realname').val(); | |||
| var companyCode = $('#companyCode').val(); | |||
| var companyNature = $('#companyNature').val(); | |||
| var companyScope = $('#companyScope').val(); | |||
| var companyTimeLimit = $('#companyTimeLimit').val(); | |||
| var companySetupTime = $('#companySetupTime').val(); | |||
| var companyCapital = $('#companyCapital').val(); | |||
| var companyLicense = $('#companyLicense').val(); | |||
| var address = $('#address').val(); | |||
| data['companyName'] = companyName; | |||
| data['idCardNum'] = idCardNum; | |||
| data['realname'] = realname; | |||
| data['companyCode'] = companyCode; | |||
| data['companyName'] = companyName; | |||
| data['companyNature'] = companyNature; | |||
| data['companyScope'] = companyScope; | |||
| data['companyTimeLimit'] = companyTimeLimit; | |||
| data['companySetupTime'] = companySetupTime; | |||
| data['companyCapital'] = companyCapital; | |||
| data['companyLicense'] = companyLicense; | |||
| data['address'] = address; | |||
| } | |||
| if(type == 'user'){ | |||
| //个人用户信息 | |||
| var userFormRealName = $('#userFormRealName').val(); | |||
| var userFormIdCard = $('#userFormIdCard').val(); | |||
| var userFormAddress = $('#userFormAddress').val(); | |||
| data['idCardNum'] = userFormIdCard; | |||
| data['realname'] = userFormRealName; | |||
| data['address'] = userFormAddress; | |||
| } | |||
| if(type == 'bank'){ | |||
| //银行卡信息 | |||
| var bankCardName = $('#bankCardName').val(); | |||
| var bankCardNum = $('#bankCardNum').val(); | |||
| var bankAddress = $('#bankAddress').val(); | |||
| data['bankCardName'] = bankCardName; | |||
| data['bankCardNum'] = bankCardNum; | |||
| data['bankAddress'] = bankAddress; | |||
| } | |||
| //data['password'] = password; | |||
| data['companyName'] = companyName; | |||
| data['idCardNum'] = idCardNum; | |||
| data['realname'] = realname; | |||
| data['companyCode'] = companyCode; | |||
| data['companyName'] = companyName; | |||
| data['companyNature'] = companyNature; | |||
| data['companyScope'] = companyScope; | |||
| data['companyTimeLimit'] = companyTimeLimit; | |||
| data['companySetupTime'] = companySetupTime; | |||
| data['companyCapital'] = companyCapital; | |||
| data['companyLicense'] = companyLicense; | |||
| data['address'] = address; | |||
| data['bankCardName'] = bankCardName; | |||
| data['bankCardNum'] = bankCardNum; | |||
| data['bankAddress'] = bankAddress; | |||
| data['id'] = module.data.memberId; | |||
| tools.doPut(userUpdate, data, module.Tips) | |||
| @@ -335,6 +348,7 @@ define(['jquery', "template", "Tools", "user", "paging","cupload","ajaxUploadIma | |||
| var data = {}; | |||
| //供求信息 | |||
| var demandType = $('#demandType').val(); | |||
| var projectName = $('#projectName').val(); | |||
| var location = $('#location').val(); | |||
| var projectRealName = $('#projectRealName').val(); | |||
| @@ -342,12 +356,14 @@ define(['jquery', "template", "Tools", "user", "paging","cupload","ajaxUploadIma | |||
| var projectContent = $('#projectContent').val(); | |||
| var logintime = tools.getNowFormatDate(); | |||
| console.log(demandType); | |||
| data['projectName'] = projectName; | |||
| data['location'] = location; | |||
| data['realname'] = projectRealName; | |||
| data['phone'] = projectPhone; | |||
| data['projectContent'] = projectContent; | |||
| data['logintime'] = logintime; | |||
| data['supplyDemandType'] = demandType; | |||
| data['memberId'] = module.data.memberId; | |||
| @@ -21,6 +21,8 @@ define(['jquery', "Tools","user"], function ($, Tools) { | |||
| module.verificationCode() | |||
| //背景高度 | |||
| module.register() | |||
| //网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
| tools.getWebConfig(); | |||
| }; | |||
| /*-----------------------------自定义方法-------------------------------------*/ | |||
| @@ -14,6 +14,8 @@ define(['jquery', "template", "Tools", "echarts", 'swiper'], function ($, templa | |||
| //背景高度 | |||
| module.register(); | |||
| module.data.type = getQueryVariable("type") | |||
| //网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
| tools.getWebConfig(); | |||
| }; | |||
| //获取地址栏参数 | |||
| @@ -5,7 +5,7 @@ define(['jquery', "template", "Tools", "echarts", 'register', 'swiper'], functio | |||
| //数据存储 | |||
| var module = { | |||
| data: { | |||
| type: 1 | |||
| }, | |||
| }; | |||
| var tools = new Tools(); | |||
| @@ -17,7 +17,8 @@ define(['jquery', "template", "Tools", "echarts", 'register', 'swiper'], functio | |||
| $('#graphicImgBtn').on('click', module.verificationCode) | |||
| //图形验证码加载 | |||
| module.verificationCode() | |||
| //网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
| tools.getWebConfig(); | |||
| module.getType(); | |||
| }; | |||
| @@ -82,13 +83,14 @@ define(['jquery', "template", "Tools", "echarts", 'register', 'swiper'], functio | |||
| var realName = $('#realName').val(); | |||
| var idCardNum = $('#idCardNum').val(); | |||
| var address = $('#address').val(); | |||
| var memberType = 1 ; | |||
| data['phone'] = phone; | |||
| data['password'] = passwordVal; | |||
| data['code'] = codeVal; | |||
| data['realname'] = realName; | |||
| data['idCardNum'] = idCardNum; | |||
| data['address'] = address; | |||
| data['economicType'] = 1; | |||
| } | |||
| if (module.data.type == 2){ | |||
| var phone = $('#phone').val(); | |||
| @@ -184,7 +186,6 @@ define(['jquery', "template", "Tools", "echarts", 'register', 'swiper'], functio | |||
| tools.initTips('请输入图形验证码', 'right', $('#code')[0], 2000) | |||
| return false; | |||
| } | |||
| console.log($('#iAgree:checked').val()) | |||
| if ($('#iAgree:checked').val() == undefined){ | |||
| tools.initTips('请选择我已同意', 'right', $('#iAgree')[0], 2000) | |||
| @@ -60,7 +60,7 @@ | |||
| <div class="logoSearch w-1200"> | |||
| <div class="wid50 logoSearch-div fl"> | |||
| <img src="../../static/images/logo.png" class="fl" alt="左云县农村产权交易网" onclick="goIndex()" /> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()">左云县农村产权交易网</h1> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="wid50 logoSearch-div fr"> | |||
| @@ -57,7 +57,7 @@ | |||
| <div class="logoSearch w-1200"> | |||
| <div class="wid50 logoSearch-div fl"> | |||
| <img src="../../static/images/logo.png" class="fl" alt="左云县农村产权交易网" onclick="goIndex()" /> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()">左云县农村产权交易网</h1> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="wid50 logoSearch-div fr"> | |||
| @@ -57,7 +57,7 @@ | |||
| <div class="logoSearch w-1200"> | |||
| <div class="wid50 logoSearch-div fl"> | |||
| <img src="../../static/images/logo.png" class="fl" alt="左云县农村产权交易网" onclick="goIndex()" /> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()">左云县农村产权交易网</h1> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="wid50 logoSearch-div fr"> | |||
| @@ -60,7 +60,7 @@ | |||
| <div class="logoSearch w-1200"> | |||
| <div class="wid50 logoSearch-div fl"> | |||
| <img src="../../static/images/logo.png" class="fl" alt="左云县农村产权交易网" onclick="goIndex()" /> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()">左云县农村产权交易网</h1> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="wid50 logoSearch-div fr"> | |||
| @@ -58,7 +58,7 @@ | |||
| <div class="logoSearch w-1200"> | |||
| <div class="wid50 logoSearch-div fl"> | |||
| <img src="../../static/images/logo.png" class="fl" alt="左云县农村产权交易网" onclick="goIndex()" /> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()">左云县农村产权交易网</h1> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="wid50 logoSearch-div fr"> | |||
| @@ -58,7 +58,7 @@ | |||
| <div class="logoSearch w-1200"> | |||
| <div class="wid50 logoSearch-div fl"> | |||
| <img src="../../static/images/logo.png" class="fl" alt="左云县农村产权交易网" onclick="goIndex()" /> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()">左云县农村产权交易网</h1> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="wid50 logoSearch-div fr"> | |||
| @@ -57,7 +57,7 @@ | |||
| <div class="logoSearch w-1200"> | |||
| <div class="wid50 logoSearch-div fl"> | |||
| <img src="../../static/images/logo.png" class="fl" alt="左云县农村产权交易网" onclick="goIndex()" /> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()">左云县农村产权交易网</h1> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="wid50 logoSearch-div fr"> | |||
| @@ -64,7 +64,7 @@ | |||
| <div class="logoSearch w-1200"> | |||
| <div class="wid50 logoSearch-div fl"> | |||
| <img src="../../static/images/logo.png" class="fl" alt="左云县农村产权交易网" onclick="goIndex()"/> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()">左云县农村产权交易网</h1> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="wid50 logoSearch-div fr"> | |||
| @@ -60,7 +60,7 @@ | |||
| <div class="logoSearch w-1200"> | |||
| <div class="wid50 logoSearch-div fl"> | |||
| <img src="../../static/images/logo.png" class="fl" alt="左云县农村产权交易网" onclick="goIndex()" /> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()">左云县农村产权交易网</h1> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="wid50 logoSearch-div fr"> | |||
| @@ -57,7 +57,7 @@ | |||
| <div class="logoSearch w-1200"> | |||
| <div class="wid50 logoSearch-div fl"> | |||
| <img src="../../static/images/logo.png" class="fl" alt="左云县农村产权交易网" onclick="goIndex()" /> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()">左云县农村产权交易网</h1> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="wid50 logoSearch-div fr"> | |||
| @@ -57,7 +57,7 @@ | |||
| <div class="logoSearch w-1200"> | |||
| <div class="wid50 logoSearch-div fl"> | |||
| <img src="../../static/images/logo.png" class="fl" alt="左云县农村产权交易网" onclick="goIndex()" /> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()">左云县农村产权交易网</h1> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="wid50 logoSearch-div fr"> | |||
| @@ -57,7 +57,7 @@ | |||
| <div class="logoSearch w-1200"> | |||
| <div class="wid50 logoSearch-div fl"> | |||
| <img src="../../static/images/logo.png" class="fl" alt="左云县农村产权交易网" onclick="goIndex()" /> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()">左云县农村产权交易网</h1> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="wid50 logoSearch-div fr"> | |||
| @@ -57,7 +57,7 @@ | |||
| <div class="logoSearch w-1200"> | |||
| <div class="wid50 logoSearch-div fl"> | |||
| <img src="../../static/images/logo.png" class="fl" alt="左云县农村产权交易网" onclick="goIndex()" /> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()">左云县农村产权交易网</h1> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="wid50 logoSearch-div fr"> | |||
| @@ -57,7 +57,7 @@ | |||
| <div class="logoSearch w-1200"> | |||
| <div class="wid50 logoSearch-div fl"> | |||
| <img src="../../static/images/logo.png" class="fl" alt="左云县农村产权交易网" onclick="goIndex()" /> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()">左云县农村产权交易网</h1> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="wid50 logoSearch-div fr"> | |||
| @@ -58,7 +58,7 @@ | |||
| <div class="logoSearch w-1200"> | |||
| <div class="wid50 logoSearch-div fl"> | |||
| <img src="../../static/images/logo.png" class="fl" alt="左云县农村产权交易网" onclick="goIndex()" /> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()">左云县农村产权交易网</h1> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="wid50 logoSearch-div fr"> | |||
| @@ -60,7 +60,7 @@ | |||
| <div class="logoSearch w-1200"> | |||
| <div class="wid50 logoSearch-div fl"> | |||
| <img src="../../static/images/logo.png" class="fl" alt="左云县农村产权交易网" onclick="goIndex()" /> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()">左云县农村产权交易网</h1> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="wid50 logoSearch-div fr"> | |||
| @@ -59,7 +59,7 @@ | |||
| <div class="logoSearch w-1200"> | |||
| <div class="wid50 logoSearch-div fl"> | |||
| <img src="../../static/images/logo.png" class="fl" alt="左云县农村产权交易网" onclick="goIndex()" /> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()">左云县农村产权交易网</h1> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="wid50 logoSearch-div fr"> | |||
| @@ -163,25 +163,25 @@ | |||
| <td style="border: none;"><span>*</span>手机号码:</td> | |||
| <td style="border: none;"><p class="m-l-10 m-r-10 fl">{{userInformationDetail.phone}}</p><span onclick="phoneUpdate('user')">修改手机号</span></td> | |||
| </tr> | |||
| <tr> | |||
| <td><span>*</span>密码:</td> | |||
| <td><input type="text" value="" class="p-l-10" style="width: 30%"/></td> | |||
| </tr> | |||
| <!-- <tr>--> | |||
| <!-- <td><span>*</span>密码:</td>--> | |||
| <!-- <td><input type="text" value="" class="p-l-10" style="width: 30%"/></td>--> | |||
| <!-- </tr>--> | |||
| <tr> | |||
| <td style="border-bottom: 1px solid #e3e3e3;height: 0;padding: 0;"></td> | |||
| <td style="border-bottom: 1px solid #e3e3e3;height: 0;padding: 0;"></td> | |||
| </tr> | |||
| <tr> | |||
| <td><span>*</span>姓名:</td> | |||
| <td><input type="text" value="{{userInformationDetail.realname}}" class="p-l-10" style="width: 30%"/></td> | |||
| <td><input type="text" value="{{userInformationDetail.realname}}" id="userFormRealName" class="p-l-10" style="width: 30%"/></td> | |||
| </tr> | |||
| <tr> | |||
| <td><span>*</span>身份证号码:</td> | |||
| <td><input type="text" value="{{userInformationDetail.idCardNum}}" class="p-l-10" style="width: 30%"/></td> | |||
| <td><input type="text" value="{{userInformationDetail.idCardNum}}" id="userFormIdCard" class="p-l-10" style="width: 30%"/></td> | |||
| </tr> | |||
| <tr> | |||
| <td>联系住址:</td> | |||
| <td><input type="text" value="{{userInformationDetail.address}}" class="p-l-10" style="width: 30%"/></td> | |||
| <td><input type="text" value="{{userInformationDetail.address}}" id="userFormAddress" class="p-l-10" style="width: 30%"/></td> | |||
| </tr> | |||
| <tr> | |||
| <td><span>*</span>上传附件:</td> | |||
| @@ -193,7 +193,7 @@ | |||
| </tr> | |||
| <tr> | |||
| <td></td> | |||
| <td><input type="button" value="保存" style="width: 30%"/></td> | |||
| <td><p onclick="formAction('user')">保存</p></td> | |||
| </tr> | |||
| </script> | |||
| <table width="100%" id="userInformationContent"></table> | |||
| @@ -207,9 +207,9 @@ | |||
| </tr> | |||
| <tr> | |||
| <td><span>*</span>公司名称:</td> | |||
| <td><input type="text" id="companyName" value="{{userInformationDetail.companyName}}" onchange="formAction('companyName')"/></td> | |||
| <td><input type="text" id="companyName" value="{{userInformationDetail.companyName}}"/></td> | |||
| <td><span>*</span>身份证号:</td> | |||
| <td><input type="text" id="idCardNum" value="{{userInformationDetail.idCardNum}}" onchange="formAction('idCardNum')"/></td> | |||
| <td><input type="text" id="idCardNum" value="{{userInformationDetail.idCardNum}}"/></td> | |||
| </tr> | |||
| <tr> | |||
| <td><span>*</span>负责人姓名:</td> | |||
| @@ -250,7 +250,7 @@ | |||
| </tr> | |||
| <tr> | |||
| <td></td> | |||
| <td><input type="button" id="userAction" value="保存"/></td> | |||
| <td><p onclick="formAction('company')">保存</p></td> | |||
| </tr> | |||
| </script> | |||
| <table width="100%" id="companyInformationContent"></table> | |||
| @@ -271,7 +271,7 @@ | |||
| </tr> | |||
| <tr> | |||
| <td></td> | |||
| <td><input type="button" id="bankAction" value="保存" style="width: 30%"/></td> | |||
| <td><p onclick="formAction('bank')">保存</p></td> | |||
| </tr> | |||
| </table> | |||
| @@ -358,9 +358,9 @@ | |||
| <tr> | |||
| <td><span>*</span>供求类型:</td> | |||
| <td> | |||
| <select> | |||
| <option>供求类型</option> | |||
| <option>供求类型</option> | |||
| <select id="demandType"> | |||
| <option value="1">供应</option> | |||
| <option value="2">求购</option> | |||
| </select> | |||
| </td> | |||
| </tr> | |||