| @@ -22,6 +22,10 @@ var tenderList = '/transaction/website/tender/publicity'//招标公告列表 | |||
| deptId:行政区划部门ID | |||
| */ | |||
| var winList = '/transaction/website/win/publicity'//中标公告列表 | |||
| var outProjectTerminate = '/transaction/website/outproject/terminate'//中标公告列表 | |||
| var outProjectDetail = '/transaction/website/outproject/terminate/id/'//中标公告列表 | |||
| var outProjectException = '/transaction/website/outproject/exception'//中标公告列表 | |||
| var outProjectExceptionDetail = '/transaction/website/outproject/exception/id/'//中标公告列表 | |||
| /* | |||
| @purl /transaction/website/jzlist/{deptId} | |||
| @@ -0,0 +1,112 @@ | |||
| /** | |||
| * Created by Administrator on 2021/4/5. | |||
| */ | |||
| define(['jquery', "template", "Tools", "announApi", "paging", 'swiper'], function ($, template, Tools ) { | |||
| //数据存储 | |||
| var module = { | |||
| data: { | |||
| //焦点图数据 | |||
| focusListTop: [], | |||
| announcementInformationDetail:'', | |||
| }, | |||
| }; | |||
| var tools = new Tools(); | |||
| module.init = function (page) { | |||
| //获取焦点图信息 | |||
| tools.doGet(websitePicture, {picType:1,status:0,orderByColumn:'picSort',isAsc:'desc'}, module.focusNewsTop , true); | |||
| //成交公告 | |||
| tools.doGet(outProjectExceptionDetail+getQueryVariable('id'), {}, module.announInformation,true); | |||
| //网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
| tools.getWebConfig(); | |||
| }; | |||
| //焦点图数据 | |||
| module.focusNewsTop = function (data) { | |||
| if (data.code == 200) { | |||
| let focusArray = []; | |||
| if(data.data.length<1){ | |||
| focusArray.push({ | |||
| picUrl:'../../../static/images/banner1.png' | |||
| },{ | |||
| picUrl:'../../../static/images/banner2.png' | |||
| },{ | |||
| picUrl:'../../../static/images/banner3.png' | |||
| }) | |||
| }else{ | |||
| data.data.forEach(res=>{ | |||
| focusArray.push({ | |||
| picUrl:'/api'+res.picUrl | |||
| }) | |||
| }) | |||
| } | |||
| module.data.focusListTop = focusArray; | |||
| var bannerFocusDataTop = template('bannerFocusDataTop', module.data); | |||
| $("#bannerFocusTopContent").html(bannerFocusDataTop); | |||
| new Swiper('#bannerFocusWrapTop', { | |||
| paginationClickable: true, | |||
| autoplay : 4000, | |||
| loop:true | |||
| }) | |||
| } | |||
| } | |||
| //底部友情链接 | |||
| module.bottomFriendsLinks = function (data) { | |||
| if (data.code == 200) { | |||
| var content = data.data; | |||
| //console.log(content) | |||
| module.data.friendsLinksList = content; | |||
| var friendsLinksData = template('friendsLinksData', module.data); | |||
| $("#friendsLinksContent").html(friendsLinksData); | |||
| } | |||
| } | |||
| //获取地址栏参数 | |||
| function getQueryVariable(variable){ | |||
| var query = window.location.search.substring(1); | |||
| var vars = query.split("&"); | |||
| for (var i=0;i<vars.length;i++) { | |||
| var pair = vars[i].split("="); | |||
| if(pair[0] == variable){return pair[1];} | |||
| } | |||
| return(false); | |||
| } | |||
| //项目公告数据 | |||
| module.announInformation = function (data) { | |||
| if (data.code == 200) { | |||
| //console.log(data) | |||
| var content = data.data; | |||
| content.jyzxImgArray = []; | |||
| content.jsdwImgArray = []; | |||
| if (content.jyzxImg){ | |||
| content.jyzxImg.split(',').map(res=>{ | |||
| content.jyzxImgArray.push({ | |||
| fileName: res.substr(27,res.length), | |||
| fileUrl:res, | |||
| }) | |||
| }) | |||
| } | |||
| if (content.jsdwImg){ | |||
| content.jsdwImg.split(',').map(res=>{ | |||
| content.jsdwImgArray.push({ | |||
| fileName: res.substr(27,res.length), | |||
| fileUrl:res, | |||
| }) | |||
| }) | |||
| } | |||
| module.data.announcementInformationDetail = content; | |||
| var announcementInformationData = template('announcementInformationData', module.data); | |||
| $("#announcementInformationContent").html(announcementInformationData); | |||
| } | |||
| } | |||
| return module; | |||
| }); | |||
| @@ -15,6 +15,8 @@ define(['jquery', "template", "Tools", "announApi", "paging", 'swiper'], functio | |||
| winTheBiddingInformationList:'', | |||
| //鉴证列表 | |||
| inviteTendersInformationList:'', | |||
| stopInformationList:'', | |||
| abnormalInformationList:'', | |||
| //页码 | |||
| pageNum: 1, | |||
| //页码集合 | |||
| @@ -48,6 +50,8 @@ define(['jquery', "template", "Tools", "announApi", "paging", 'swiper'], functio | |||
| tools.doGet(attestationList, {deptId:100,pageNum:module.data.pageNum,pageSize:module.data.pageSize}, module.attestationInformation,true); | |||
| tools.doGet(tenderList, {deptId:100,pageNum:module.data.pageNum,pageSize:module.data.pageSize}, module.inviteTendersInformation,true); | |||
| tools.doGet(winList, {deptId:100,pageNum:module.data.pageNum,pageSize:module.data.pageSize}, module.winTheBiddingInformation,true); | |||
| tools.doGet(outProjectTerminate, {deptId:100,pageNum:module.data.pageNum,pageSize:module.data.pageSize}, module.stopInformation,true); | |||
| tools.doGet(outProjectException, {deptId:100,pageNum:module.data.pageNum,pageSize:module.data.pageSize}, module.abnormalInformation,true); | |||
| } | |||
| //网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
| tools.getWebConfig(); | |||
| @@ -137,6 +141,60 @@ define(['jquery', "template", "Tools", "announApi", "paging", 'swiper'], functio | |||
| } | |||
| } | |||
| //项目公告数据 abnormalInformation | |||
| module.stopInformation = function (data) { | |||
| if (data.code == 200) { | |||
| var content = data.rows; | |||
| var pageCount = (data.total/module.data.pageSize).toFixed(0); | |||
| if (pageCount < 1){ | |||
| pageCount = 1; | |||
| } | |||
| if(module.data.stopInformationList == ''){ | |||
| // 初始化 分页器 | |||
| var page_s5=createPage('.page_s5'); | |||
| // 设置分页 | |||
| setPage(page_s5,{ | |||
| pageTotal: data.total, // 数据总条数 | |||
| pageSize: module.data.pageSize, // 每页显示条数 | |||
| pageCurrent: 1, // 当前页 | |||
| maxBtnNum: 5, // 最多按钮个数 (最少5个) | |||
| }) | |||
| $('#page_s5').html('共'+pageCount+'页') | |||
| } | |||
| module.data.pageCount = pageCount; | |||
| module.data.stopInformationList = content; | |||
| var stopInformationData = template('stopInformationData', module.data); | |||
| $("#stopInformationContent").html(stopInformationData); | |||
| } | |||
| } | |||
| //项目公告数据 | |||
| module.abnormalInformation = function (data) { | |||
| if (data.code == 200) { | |||
| var content = data.rows; | |||
| var pageCount = (data.total/module.data.pageSize).toFixed(0); | |||
| if (pageCount < 1){ | |||
| pageCount = 1; | |||
| } | |||
| if(module.data.abnormalInformationList == ''){ | |||
| // 初始化 分页器 | |||
| var page_s6=createPage('.page_s6'); | |||
| // 设置分页 | |||
| setPage(page_s6,{ | |||
| pageTotal: data.total, // 数据总条数 | |||
| pageSize: module.data.pageSize, // 每页显示条数 | |||
| pageCurrent: 1, // 当前页 | |||
| maxBtnNum: 5, // 最多按钮个数 (最少5个) | |||
| }) | |||
| $('#page_s6').html('共'+pageCount+'页') | |||
| } | |||
| module.data.pageCount = pageCount; | |||
| module.data.abnormalInformationList = content; | |||
| var abnormalInformationData = template('abnormalInformationData', module.data); | |||
| $("#abnormalInformationContent").html(abnormalInformationData); | |||
| } | |||
| } | |||
| //鉴证公告数据 | |||
| module.attestationInformation = function (data) { | |||
| if (data.code == 200) { | |||
| @@ -224,18 +282,24 @@ define(['jquery', "template", "Tools", "announApi", "paging", 'swiper'], functio | |||
| document.getElementById('announcementInformationContent').style.display = 'none'; | |||
| document.getElementById('inviteTendersInformationContent').style.display = 'none'; | |||
| document.getElementById('winTheBiddingInformationContent').style.display = 'none'; | |||
| document.getElementById('stopInformationContent').style.display = 'none'; | |||
| document.getElementById('abnormalInformationContent').style.display = 'none'; | |||
| document.getElementById(type+'InformationContent').style.display = 'block'; | |||
| document.getElementById('attestation').className = ''; | |||
| document.getElementById('announcement').className = ''; | |||
| document.getElementById('inviteTenders').className = ''; | |||
| document.getElementById('winTheBidding').className = ''; | |||
| document.getElementById('stop').className = ''; | |||
| document.getElementById('abnormal').className = ''; | |||
| document.getElementById(type).className = 'active'; | |||
| document.getElementById('attestationNum').style.display = 'none'; | |||
| document.getElementById('announcementNum').style.display = 'none'; | |||
| document.getElementById('inviteTendersNum').style.display = 'none'; | |||
| document.getElementById('winTheBiddingNum').style.display = 'none'; | |||
| document.getElementById('stopNum').style.display = 'none'; | |||
| document.getElementById('abnormalNum').style.display = 'none'; | |||
| document.getElementById(type+'Num').style.display = 'block'; | |||
| module.data.clickType = type; | |||
| @@ -255,4 +319,4 @@ define(['jquery', "template", "Tools", "announApi", "paging", 'swiper'], functio | |||
| } | |||
| } | |||
| return module; | |||
| }); | |||
| }); | |||
| @@ -0,0 +1,96 @@ | |||
| /** | |||
| * Created by Administrator on 2021/4/5. | |||
| */ | |||
| define(['jquery', "template", "Tools", "announApi", "paging", 'swiper'], function ($, template, Tools ) { | |||
| //数据存储 | |||
| var module = { | |||
| data: { | |||
| //焦点图数据 | |||
| focusListTop: [], | |||
| announcementInformationDetail:'', | |||
| }, | |||
| }; | |||
| var tools = new Tools(); | |||
| module.init = function (page) { | |||
| //获取焦点图信息 | |||
| tools.doGet(websitePicture, {picType:1,status:0,orderByColumn:'picSort',isAsc:'desc'}, module.focusNewsTop , true); | |||
| //成交公告 | |||
| tools.doGet(outProjectDetail+getQueryVariable('id'), {}, module.announInformation,true); | |||
| //网站配置信息(网站名称 底部联系方式 公安备案号 网站备案号) | |||
| tools.getWebConfig(); | |||
| }; | |||
| //焦点图数据 | |||
| module.focusNewsTop = function (data) { | |||
| if (data.code == 200) { | |||
| let focusArray = []; | |||
| if(data.data.length<1){ | |||
| focusArray.push({ | |||
| picUrl:'../../../static/images/banner1.png' | |||
| },{ | |||
| picUrl:'../../../static/images/banner2.png' | |||
| },{ | |||
| picUrl:'../../../static/images/banner3.png' | |||
| }) | |||
| }else{ | |||
| data.data.forEach(res=>{ | |||
| focusArray.push({ | |||
| picUrl:'/api'+res.picUrl | |||
| }) | |||
| }) | |||
| } | |||
| module.data.focusListTop = focusArray; | |||
| var bannerFocusDataTop = template('bannerFocusDataTop', module.data); | |||
| $("#bannerFocusTopContent").html(bannerFocusDataTop); | |||
| new Swiper('#bannerFocusWrapTop', { | |||
| paginationClickable: true, | |||
| autoplay : 4000, | |||
| loop:true | |||
| }) | |||
| } | |||
| } | |||
| //底部友情链接 | |||
| module.bottomFriendsLinks = function (data) { | |||
| if (data.code == 200) { | |||
| var content = data.data; | |||
| //console.log(content) | |||
| module.data.friendsLinksList = content; | |||
| var friendsLinksData = template('friendsLinksData', module.data); | |||
| $("#friendsLinksContent").html(friendsLinksData); | |||
| } | |||
| } | |||
| //获取地址栏参数 | |||
| function getQueryVariable(variable){ | |||
| var query = window.location.search.substring(1); | |||
| var vars = query.split("&"); | |||
| for (var i=0;i<vars.length;i++) { | |||
| var pair = vars[i].split("="); | |||
| if(pair[0] == variable){return pair[1];} | |||
| } | |||
| return(false); | |||
| } | |||
| //项目公告数据 | |||
| module.announInformation = function (data) { | |||
| if (data.code == 200) { | |||
| //console.log(data) | |||
| var content = data.data; | |||
| module.data.announcementInformationDetail = content; | |||
| var announcementInformationData = template('announcementInformationData', module.data); | |||
| $("#announcementInformationContent").html(announcementInformationData); | |||
| module.data.attachmentList = content.attachmentList; | |||
| var attachmentListData = template('attachmentListData', module.data); | |||
| $("#attachmentListContent").html(attachmentListData); | |||
| } | |||
| } | |||
| return module; | |||
| }); | |||
| @@ -0,0 +1,131 @@ | |||
| <!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="incomeAndExpenditure" 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/incomeAndExpenditure.css" rel="stylesheet" type="text/css" /> | |||
| <link href="../static/css/dateTime.css" rel="stylesheet" type="text/css" /> | |||
| </head> | |||
| <body> | |||
| <div class="main" id="page"> | |||
| <div class="header flex_dom flex_item_between flex_item_mid"> | |||
| <div id="titContent"> | |||
| <span id="tt">阳光三资公示公开</span> | |||
| <span>YANG GUANG SAN ZI GONG SHI GONG KAI</span> | |||
| </div> | |||
| <div class="wid25 flex_dom flex_item_between flex_item_mid"> | |||
| <div class="header_nav"> | |||
| <p>2025年7月14日 18:12:56</p> | |||
| <p>星期一</p> | |||
| </div> | |||
| <div class="user_box"> | |||
| <p>用户名</p> | |||
| <img src="static/images/user_icon.png" alt=""> | |||
| </div> | |||
| </div> | |||
| </div> | |||
| <div class="new_main" style="height: 65vh;"> | |||
| <div class="new_flex"> | |||
| <p class="tab_link">首页 > 公开 > 收支明细公开</p> | |||
| <div class="search_main"> | |||
| <p>查询年月</p> | |||
| <div style="position:relative;"> | |||
| <input type="text" class="data_input datas_input" placeholder="请选择日期" id="signStartTimeStr" autocomplete="off"> | |||
| <img class="input_data_icon" src="../static/images/data_input.png" alt="data_input"/> | |||
| </div> | |||
| <p class="search_btn">查询</p> | |||
| <p class="search_rest">重置</p> | |||
| </div> | |||
| <div class="report-title"> | |||
| <div class="balance-main"> | |||
| <div class="report-title"> | |||
| <span>明细公开榜</span> | |||
| </div> | |||
| </div> | |||
| <div class="main-title"> | |||
| <div class="company">公开单位:夏庄村民委员会合作联合社</div> | |||
| <div class="nper">账期:2025年06月</div> | |||
| <div class="amountOf">单位:元</div> | |||
| </div> | |||
| </div> | |||
| <table cellspacing="0" cellpadding="0" width="100%"> | |||
| <tr> | |||
| <td colspan="2">2025年</td> | |||
| <td rowspan="2" width="50%">摘要</td> | |||
| <td colspan="2">发生额</td> | |||
| <td rowspan="2">结存</td> | |||
| </tr> | |||
| <tr> | |||
| <td>月</td> | |||
| <td>凭证号</td> | |||
| <td>借方发生</td> | |||
| <td>贷方发生</td> | |||
| </tr> | |||
| <tr> | |||
| <td>2025</td> | |||
| <td></td> | |||
| <td></td> | |||
| <td></td> | |||
| <td></td> | |||
| <td>0.00</td> | |||
| </tr> | |||
| <tr> | |||
| <td>06</td> | |||
| <td>记-1</td> | |||
| <td></td> | |||
| <td>18491.00</td> | |||
| <td></td> | |||
| <td>18491.00</td> | |||
| </tr> | |||
| </table> | |||
| </div> | |||
| </div> | |||
| <div class="footer_main" > | |||
| <div class="footer"> | |||
| <div class="footer_link_company"> | |||
| <div> | |||
| <p id="phone">投诉电话:0631-12345678</p> | |||
| <p id="zcdw">支持单位:中农融信(北京)科技股份有限公司</p> | |||
| </div> | |||
| </div> | |||
| </div> | |||
| <div class="footer_link_filings"> | |||
| <div class="footer_link_filings_left"> | |||
| <p>手机扫码进入移动端</p> | |||
| <p>移动端操作更方便、快捷</p> | |||
| </div> | |||
| <img src="static/images/ewm.png" id="ewm" alt=""> | |||
| </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/incomeAndExpenditure.js" defer type="text/javascript"></script> | |||
| </html> | |||
| @@ -0,0 +1,130 @@ | |||
| .new_main{ | |||
| width: 100%; | |||
| margin: 0 auto; | |||
| height: 65vh; | |||
| display: flex; | |||
| background: #ffffff; | |||
| align-items: center; | |||
| justify-content: center; | |||
| } | |||
| .new_flex{ | |||
| width: 75%; | |||
| margin: 0 auto; | |||
| height: 65vh; | |||
| } | |||
| .new_main table{ | |||
| border: 1px solid #eeeeee; | |||
| } | |||
| .new_main table tr td{ | |||
| border: 1px solid #eeeeee; | |||
| text-align: center; | |||
| padding: 10px 0; | |||
| } | |||
| .new_main table tr:nth-child(-n+2) td{ | |||
| background: #F0F6FE; | |||
| } | |||
| .report-title { | |||
| font-size: 20px; | |||
| font-weight: bold; | |||
| text-align: center; | |||
| line-height: 24px; | |||
| margin-bottom: 2px; | |||
| position: relative; | |||
| } | |||
| .main-title { | |||
| margin-bottom: 5px; | |||
| padding: 0 10px; | |||
| height: 33px; | |||
| line-height: 33px; | |||
| color: #333; | |||
| font-size: 13px; | |||
| display: flex; | |||
| } | |||
| .main-title .company { | |||
| text-align: left; | |||
| display: inline-block; | |||
| width: 30%; | |||
| } | |||
| .main-title .nper { | |||
| display: inline-block; | |||
| width: 40%; | |||
| text-align: center; | |||
| } | |||
| .main-title .amountOf { | |||
| display: inline-block; | |||
| width: 30%; | |||
| text-align: right; | |||
| } | |||
| .balance-main { | |||
| background: #fff; | |||
| margin: 17px auto 0; | |||
| padding-bottom: 10px; | |||
| } | |||
| .tab_link{ | |||
| margin: 20px 0; | |||
| } | |||
| .search_main{ | |||
| display: flex; | |||
| background: #F7F8FA; | |||
| height: 80px; | |||
| align-items: center; | |||
| padding: 0 20px; | |||
| } | |||
| .data_input { | |||
| float: left; | |||
| width: 190px; | |||
| height: 26px; | |||
| background: #ffffff; | |||
| border: 1px solid #E5E5E5; | |||
| border-radius: 4px; | |||
| text-indent: 10px; | |||
| margin-left: 15px; | |||
| font-size: 14px; | |||
| } | |||
| .datas_input::-webkit-input-placeholder { | |||
| color: #999; | |||
| } | |||
| .datas_input:-moz-placeholder { | |||
| color: #999; | |||
| } | |||
| .datas_input:-ms-input-placeholder { | |||
| color: #999; | |||
| } | |||
| .input_data_icon { | |||
| position: absolute; | |||
| width: 18px; | |||
| right: 10px; | |||
| top: 4px; | |||
| } | |||
| .centerRight-list1-form input, | |||
| select { | |||
| background-color: transparent; | |||
| border: 1px solid #bfbfbf; | |||
| height: 26px; | |||
| padding-left: 5px; | |||
| width: 170px; | |||
| } | |||
| .search_btn{ | |||
| background: linear-gradient( 91deg, #187CF4 0%, #2538FE 100%); | |||
| border-radius: 2px 2px 2px 2px; | |||
| width: 80px; | |||
| height: 32px; | |||
| display: flex; | |||
| align-items: center; | |||
| justify-content: center; | |||
| color: #ffffff; | |||
| line-height: 1; | |||
| } | |||
| .search_rest{ | |||
| background: #ffffff; | |||
| border-radius: 2px 2px 2px 2px; | |||
| width: 80px; | |||
| height: 32px; | |||
| display: flex; | |||
| align-items: center; | |||
| justify-content: center; | |||
| line-height: 1; | |||
| } | |||
| @@ -431,7 +431,7 @@ | |||
| } | |||
| .footer_main{ | |||
| height: 20vh; | |||
| background: #ffffff; | |||
| background: #f9f9f9; | |||
| display: flex; | |||
| padding: 1.5vh 20%; | |||
| align-items: center; | |||
| @@ -0,0 +1,76 @@ | |||
| /** | |||
| * Created by Administrator on 2021/4/5. | |||
| */ | |||
| define(['jquery', "template", "Tools", 'swiper', 'dateTime'], function ($, template, Tools, swiper) { | |||
| //数据存储 | |||
| var module = { | |||
| data: { | |||
| //服务器地址 | |||
| serverApi:'', | |||
| //焦点图数据 | |||
| focusList: [], | |||
| communicateList: [], | |||
| newImgList:[] | |||
| }, | |||
| }; | |||
| var tools = new Tools(); | |||
| module.init = function (page) { | |||
| tools.doGet(webList, { configKey: 'web.open' }, module.webList , true); | |||
| $("#signStartTimeStr").datetime({ | |||
| type: "date", | |||
| value: [new Date().getFullYear(),new Date().getMonth()+1,new Date().getDate()], | |||
| success: function (res) { | |||
| //console.log(res) | |||
| } | |||
| }) | |||
| }; | |||
| module.newsList = function (data) { | |||
| if (data.code == 200) { | |||
| var content = data.rows; | |||
| module.data.newList = content; | |||
| var newListData = template('newListData', module.data); | |||
| $("#newListContent").html(newListData); | |||
| var newImgList = []; | |||
| content.map(rr=>{ | |||
| if (rr.infoImg!=null&&rr.infoImg!=""){ | |||
| newImgList.push(rr.infoImg); | |||
| } | |||
| }) | |||
| module.data.newImgList = newImgList; | |||
| var newListDataImg = template('newListDataImg', module.data); | |||
| $("#bannerFocusNextContent").html(newListDataImg); | |||
| } | |||
| } | |||
| module.webList = function (data) { | |||
| if (data.code == 200) { | |||
| var content = data.rows; | |||
| content.map(rr=>{ | |||
| if (rr.configKey == 'web.open.technique'){ | |||
| $("#zcdw").html(rr.configValue); | |||
| } | |||
| if (rr.configKey == "web.open.phone"){ | |||
| $("#phone").html(rr.configValue); | |||
| } | |||
| if (rr.configKey == "web.open.qrcode"){ | |||
| $('#ewm').attr('src', rr.configValue); | |||
| } | |||
| if (rr.configKey == "web.open.title"){ | |||
| $("#tt").html(rr.configValue); | |||
| } | |||
| }) | |||
| } | |||
| } | |||
| searchChange = function () { | |||
| tools.doGet(newsList, {pageNum:1,pageSize:8,infoName:$("#searchInput").val()}, module.newsList , true); | |||
| } | |||
| return module; | |||
| }); | |||
| @@ -0,0 +1,220 @@ | |||
| <!DOCTYPE html | |||
| PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||
| <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="zh-CN" xml:lang="zh-CN"> | |||
| <head> | |||
| <meta charset="utf-8"> | |||
| <title>产权交易-公示公告</title> | |||
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
| <meta name="keywords" content="" /> | |||
| <meta name="description" cxontent="" /> | |||
| <link href="../../static/css/main.css" rel="stylesheet" type="text/css" /> | |||
| <link href="../../static/css/index.css" rel="stylesheet" type="text/css" /> | |||
| <link href="../../static/css/announcement/announcement.css" rel="stylesheet" type="text/css" /> | |||
| </head> | |||
| <body> | |||
| <div class="main" id="page"> | |||
| <div class="swiper-container" id="bannerFocusWrapTop"> | |||
| <script id="bannerFocusDataTop" type="text/html"> | |||
| {{each focusListTop as value i}} | |||
| <div class="swiper-slide"> | |||
| <img src="{{value.picUrl}}" alt="" width="100%" height="auto"> | |||
| </div> | |||
| {{/each}} | |||
| </script> | |||
| <div class="swiper-wrapper" id="bannerFocusTopContent"></div> | |||
| <!-- <div class="page-pagination"></div>--> | |||
| </div> | |||
| <!--顶部Title --> | |||
| <div class="bg-f7 txc"> | |||
| <div class="w-1200 topDress"> | |||
| <p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
| <div class="searchDiv fl"> | |||
| <input type="text" placeholder="请输入关键词搜索" id="searchAllTitle" class="searchClass" /> | |||
| <input type="button" value="搜索" onclick="searchAllNew()" class="searchButton" /> | |||
| </div> | |||
| <!-- <div class="topTit02 fl" id="dress">--> | |||
| <!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
| <!-- <p class="fl">威海市</p>--> | |||
| <!-- <div class="clear"></div>--> | |||
| <!-- </div>--> | |||
| <a href="javascript:void(0);" class="topTit02 fl">返回主站</a> | |||
| <!-- <a href="../bidding/biddingBigData.html" target="_blank" class="topTit02 fl">竞价大厅</a>--> | |||
| <div class="dressPc" id="dressList" style="display: none;"> | |||
| <ul> | |||
| <li> | |||
| <p class="fl">文登区</p> | |||
| <i class="jiantou"></i> | |||
| <div class="clear"></div> | |||
| </li> | |||
| <li> | |||
| <p class="fl">文登区</p> | |||
| <i class="jiantou"></i> | |||
| <div class="clear"></div> | |||
| </li> | |||
| <li> | |||
| <p class="fl">文登区</p> | |||
| <i class="jiantou"></i> | |||
| <div class="clear"></div> | |||
| </li> | |||
| <li> | |||
| <p class="fl">文登区</p> | |||
| <i class="jiantou"></i> | |||
| <div class="clear"></div> | |||
| </li> | |||
| </ul> | |||
| </div> | |||
| <div class="fr" id="userLogin" style="display: none;"> | |||
| <a href="../login/login.html">请登录</a> | |||
| <a href="../login/register.html">免费注册</a> | |||
| </div> | |||
| <div class="fr" id="userInfo" style="display: none;"> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-10" style="margin-top: 3px" alt=""/> | |||
| <img src="../../static/images/member.png" class="block fl m-r-10" style="margin-top: 4px" alt=""/> | |||
| <a href="../user/user.html" class="fl userName" id="userRealName">Sherry</a> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="headHover" id="headHover" style="display: none;"> | |||
| <ul> | |||
| <li> | |||
| <p id="userRealName2">Sherry</p> | |||
| </li> | |||
| <li class="m-t-5"> | |||
| <img src="../../static/images/user_icon1.png" class="fl" alt=""/> | |||
| <a href="../user/user.html?type=info" class="fl">我的资料</a> | |||
| <div class="clear"></div> | |||
| </li> | |||
| <li> | |||
| <img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
| <a href="../user/user.html?type=demand" class="fl">我的供求</a> | |||
| <div class="clear"></div> | |||
| </li> | |||
| <li> | |||
| <img src="../../static/images/user_icon3.png" class="fl" alt=""/> | |||
| <a href="../user/user.html?type=interact" class="fl">我的咨询</a> | |||
| <div class="clear"></div> | |||
| </li> | |||
| <li> | |||
| <img src="../../static/images/user_icon9.png" class="fl" alt=""/> | |||
| <a href="../user/user.html?type=application" class="fl">我的报名</a> | |||
| <div class="clear"></div> | |||
| </li> | |||
| <li class="m-b-5"> | |||
| <img src="../../static/images/user_icon4.png" class="fl" alt=""/> | |||
| <a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
| <div class="clear"></div> | |||
| </li> | |||
| <li onclick="outLogin()"> | |||
| <img src="../../static/images/user_icon5.png" class="fl" alt=""/> | |||
| <a class="fl">退出登录</a> | |||
| <div class="clear"></div> | |||
| </li> | |||
| </ul> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| </div> | |||
| <!--LOGO search --> | |||
| <div class="logoSearch w-1200"> | |||
| <div class="wid50 logoSearch-div fl"> | |||
| <div class="logo" onclick="goIndex()"></div> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <!--顶部导航栏 --> | |||
| <div class="top"> | |||
| <ul class="container w-1200"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| <li><a href="../listingItems/itemsList.html">交易项目</a></li> | |||
| <li><a href="../bidding/biddingList.html">竞价大厅</a></li> | |||
| <li class="active"><a href="../announcement/announcement.html">公示公告</a></li> | |||
| <li><a href="../demand/demand.html">个人供求</a></li> | |||
| <li><a href="../new/newList.html">新闻资讯</a></li> | |||
| <li><a href="../policy/policy.html">政策法规</a></li> | |||
| <li><a href="../interact/interactList.html">互动交流</a></li> | |||
| </ul> | |||
| </div> | |||
| <div class="w-1200"> | |||
| <p class="font16 m-t-15 titIndex"><b style="cursor:pointer;" onclick="history.go(-1)">异常公告</b><i>></i><span>公告详情</span></p> | |||
| <table width="100%" cellpadding="0" border="1" cellspacing="0" id="announcementInformationContent"> | |||
| <script id="announcementInformationData" type="text/html"> | |||
| <tr> | |||
| <td>项目名称</td> | |||
| <td colspan="3">{{announcementInformationDetail.projectName}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>项目编号</td> | |||
| <td>{{announcementInformationDetail.projectCode}}</td> | |||
| <td>公告日期</td> | |||
| <td>{{announcementInformationDetail.terminateAt}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>公告说明</td> | |||
| <td colspan="3">{{announcementInformationDetail.terminateRemark}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>交易中心公告</td> | |||
| <td colspan="3"> | |||
| {{each announcementInformationDetail.jyzxImgArray as value i}} | |||
| <a href="/api{{value.fileUrl}}" target="downloadFile" style="display: flex;align-items:center;margin-top: 1vh;margin-left: 15px;"> | |||
| <img src="../../static/images/file_icon.png" width="32" style="margin-right: 10px;" alt=""> | |||
| {{value.fileName}} | |||
| </a> | |||
| {{/each}} | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td>技术单位公告</td> | |||
| <td colspan="3"> | |||
| {{each announcementInformationDetail.jsdwImgArray as value i}} | |||
| <a href="/api{{value.fileUrl}}" target="downloadFile" style="display: flex;align-items:center;margin-top: 1vh;margin-left: 15px;"> | |||
| <img src="../../static/images/file_icon.png" width="32" style="margin-right: 10px;" alt=""> | |||
| {{value.fileName}} | |||
| </a> | |||
| {{/each}} | |||
| </td> | |||
| </tr> | |||
| </script> | |||
| </table> | |||
| <div id="attachmentListContent" style="margin-top: 2vh;"> | |||
| <script id="attachmentListData" type="text/html"> | |||
| {{each attachmentList as value i}} | |||
| <a href="/api{{value.fileUrl}}" target="downloadFile" style="display: flex;align-items:center;margin-top: 1vh;"> | |||
| <img src="../../static/images/file_icon.png" width="32" style="margin-right: 10px;" alt=""> | |||
| {{value.fileName}} | |||
| </a> | |||
| {{/each}} | |||
| </script> | |||
| </div> | |||
| </div> | |||
| <!--底部链接 --> | |||
| <div class="bottomLink"> | |||
| <div class="w-1200"> | |||
| <div class="w-1000 fl"> | |||
| <p class="bottomLink-tit"><i class="el-icon-link"></i>友情链接</p> | |||
| <script id="friendsLinksData" type="text/html"> | |||
| {{each friendsLinksList as value i}} | |||
| <a href="{{value.url}}" target="_blank">{{value.name}}</a> | |||
| {{/each}} | |||
| </script> | |||
| <div class="bottomLink-linkList" id="friendsLinksContent"></div> | |||
| <p class="ba" id="webConfigRecord"></p> | |||
| <p class="ba" id="webConfigAddress"></p> | |||
| </div> | |||
| <div class="ewm fr"> | |||
| <img src="../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||
| <p class="ewmtit">关注公众号 了解详情</p> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| </div> | |||
| </div> | |||
| </body> | |||
| <script src="../../static/js/common/require.js" data-main="../../static/js/common/main.js?t=101" id="require-page" | |||
| target-module="../../static/js/project/announcementList/abnormalDetail.js" defer type="text/javascript"></script> | |||
| </html> | |||
| @@ -147,6 +147,8 @@ | |||
| <ul class="bre_news"> | |||
| <a onclick="tabList('announcement')" id="announcement" class="active"><i class="iconfont icon-dongtai"></i>成交公告</a> | |||
| <a onclick="tabList('attestation')" id="attestation"><i class="iconfont icon-meitibaodao"></i>鉴证公告</a> | |||
| <a onclick="tabList('stop')" id="stop"><i class="iconfont icon-tongzhi"></i>终止公告</a> | |||
| <a onclick="tabList('abnormal')" id="abnormal"><i class="iconfont icon-fagui"></i>异常公告</a> | |||
| <a onclick="tabList('inviteTenders')" id="inviteTenders"><i class="iconfont icon-yunyingfuwu"></i>招标公告</a> | |||
| <a onclick="tabList('winTheBidding')" id="winTheBidding"><i class="iconfont icon-xuanchuanzhaoshang"></i>招标结果</a> | |||
| </ul> | |||
| @@ -182,6 +184,32 @@ | |||
| </script> | |||
| <ul id="attestationInformationContent" style="display: none;"></ul> | |||
| <!-- 终止公告 --> | |||
| <script id="stopInformationData" type="text/html"> | |||
| {{each stopInformationList as value i}} | |||
| <li> | |||
| <a href="stopDetail.html?id={{value.id}}" class="fl"><i class="sanjiao-right"></i>{{# value.projectName}}</a> | |||
| <p class="fr">{{# value.dealTime.substr(0,10)}}</p> | |||
| <div class="clear"></div> | |||
| <p class="m-t-5">项目编号:{{# value.projectCode}}</p> | |||
| </li> | |||
| {{/each}} | |||
| </script> | |||
| <ul id="stopInformationContent" style="display: block;"></ul> | |||
| <!-- 异常公告 --> | |||
| <script id="abnormalInformationData" type="text/html"> | |||
| {{each abnormalInformationList as value i}} | |||
| <li> | |||
| <a href="abnormalDetail.html?id={{value.id}}" class="fl"><i class="sanjiao-right"></i>{{# value.projectName}}</a> | |||
| <p class="fr">{{# value.terminateAt}}</p> | |||
| <div class="clear"></div> | |||
| <p class="m-t-5">项目编号:{{# value.projectCode}}</p> | |||
| </li> | |||
| {{/each}} | |||
| </script> | |||
| <ul id="abnormalInformationContent" style="display: block;"></ul> | |||
| <!-- 招标公告 --> | |||
| <script id="inviteTendersInformationData" type="text/html"> | |||
| {{each inviteTendersInformationList as value i}} | |||
| @@ -230,6 +258,14 @@ | |||
| <div style="display: inline-block;margin: 0 auto;" class="page_s4"></div> | |||
| <p style="display: inline-block;margin: 0 auto;" id="page_s4"></p> | |||
| </div> | |||
| <div class="pageNum" id="stopNum" style="display: none;"> | |||
| <div style="display: inline-block;margin: 0 auto;" class="page_s5"></div> | |||
| <p style="display: inline-block;margin: 0 auto;" id="page_s5"></p> | |||
| </div> | |||
| <div class="pageNum" id="abnormalNum" style="display: none;"> | |||
| <div style="display: inline-block;margin: 0 auto;" class="page_s6"></div> | |||
| <p style="display: inline-block;margin: 0 auto;" id="page_s6"></p> | |||
| </div> | |||
| </div> | |||
| <!--底部链接 --> | |||
| <div class="bottomLink"> | |||
| @@ -0,0 +1,198 @@ | |||
| <!DOCTYPE html | |||
| PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||
| <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="zh-CN" xml:lang="zh-CN"> | |||
| <head> | |||
| <meta charset="utf-8"> | |||
| <title>产权交易-公示公告</title> | |||
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
| <meta name="keywords" content="" /> | |||
| <meta name="description" cxontent="" /> | |||
| <link href="../../static/css/main.css" rel="stylesheet" type="text/css" /> | |||
| <link href="../../static/css/index.css" rel="stylesheet" type="text/css" /> | |||
| <link href="../../static/css/announcement/announcement.css" rel="stylesheet" type="text/css" /> | |||
| </head> | |||
| <body> | |||
| <div class="main" id="page"> | |||
| <div class="swiper-container" id="bannerFocusWrapTop"> | |||
| <script id="bannerFocusDataTop" type="text/html"> | |||
| {{each focusListTop as value i}} | |||
| <div class="swiper-slide"> | |||
| <img src="{{value.picUrl}}" alt="" width="100%" height="auto"> | |||
| </div> | |||
| {{/each}} | |||
| </script> | |||
| <div class="swiper-wrapper" id="bannerFocusTopContent"></div> | |||
| <!-- <div class="page-pagination"></div>--> | |||
| </div> | |||
| <!--顶部Title --> | |||
| <div class="bg-f7 txc"> | |||
| <div class="w-1200 topDress"> | |||
| <p class="topTit fl">Hi,欢迎来到农村产权交易中心</p> | |||
| <div class="searchDiv fl"> | |||
| <input type="text" placeholder="请输入关键词搜索" id="searchAllTitle" class="searchClass" /> | |||
| <input type="button" value="搜索" onclick="searchAllNew()" class="searchButton" /> | |||
| </div> | |||
| <!-- <div class="topTit02 fl" id="dress">--> | |||
| <!-- <img src="../../static/images/icon3.png" alt="" class="fl"/>--> | |||
| <!-- <p class="fl">威海市</p>--> | |||
| <!-- <div class="clear"></div>--> | |||
| <!-- </div>--> | |||
| <a href="javascript:void(0);" class="topTit02 fl">返回主站</a> | |||
| <!-- <a href="../bidding/biddingBigData.html" target="_blank" class="topTit02 fl">竞价大厅</a>--> | |||
| <div class="dressPc" id="dressList" style="display: none;"> | |||
| <ul> | |||
| <li> | |||
| <p class="fl">文登区</p> | |||
| <i class="jiantou"></i> | |||
| <div class="clear"></div> | |||
| </li> | |||
| <li> | |||
| <p class="fl">文登区</p> | |||
| <i class="jiantou"></i> | |||
| <div class="clear"></div> | |||
| </li> | |||
| <li> | |||
| <p class="fl">文登区</p> | |||
| <i class="jiantou"></i> | |||
| <div class="clear"></div> | |||
| </li> | |||
| <li> | |||
| <p class="fl">文登区</p> | |||
| <i class="jiantou"></i> | |||
| <div class="clear"></div> | |||
| </li> | |||
| </ul> | |||
| </div> | |||
| <div class="fr" id="userLogin" style="display: none;"> | |||
| <a href="../login/login.html">请登录</a> | |||
| <a href="../login/register.html">免费注册</a> | |||
| </div> | |||
| <div class="fr" id="userInfo" style="display: none;"> | |||
| <img src="../../static/images/user_tips.png" class="block fl m-r-10" style="margin-top: 3px" alt=""/> | |||
| <img src="../../static/images/member.png" class="block fl m-r-10" style="margin-top: 4px" alt=""/> | |||
| <a href="../user/user.html" class="fl userName" id="userRealName">Sherry</a> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="headHover" id="headHover" style="display: none;"> | |||
| <ul> | |||
| <li> | |||
| <p id="userRealName2">Sherry</p> | |||
| </li> | |||
| <li class="m-t-5"> | |||
| <img src="../../static/images/user_icon1.png" class="fl" alt=""/> | |||
| <a href="../user/user.html?type=info" class="fl">我的资料</a> | |||
| <div class="clear"></div> | |||
| </li> | |||
| <li> | |||
| <img src="../../static/images/user_icon2.png" class="fl" alt=""/> | |||
| <a href="../user/user.html?type=demand" class="fl">我的供求</a> | |||
| <div class="clear"></div> | |||
| </li> | |||
| <li> | |||
| <img src="../../static/images/user_icon3.png" class="fl" alt=""/> | |||
| <a href="../user/user.html?type=interact" class="fl">我的咨询</a> | |||
| <div class="clear"></div> | |||
| </li> | |||
| <li> | |||
| <img src="../../static/images/user_icon9.png" class="fl" alt=""/> | |||
| <a href="../user/user.html?type=application" class="fl">我的报名</a> | |||
| <div class="clear"></div> | |||
| </li> | |||
| <li class="m-b-5"> | |||
| <img src="../../static/images/user_icon4.png" class="fl" alt=""/> | |||
| <a href="../user/user.html?type=bidding" class="fl">我的竞价</a> | |||
| <div class="clear"></div> | |||
| </li> | |||
| <li onclick="outLogin()"> | |||
| <img src="../../static/images/user_icon5.png" class="fl" alt=""/> | |||
| <a class="fl">退出登录</a> | |||
| <div class="clear"></div> | |||
| </li> | |||
| </ul> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| </div> | |||
| <!--LOGO search --> | |||
| <div class="logoSearch w-1200"> | |||
| <div class="wid50 logoSearch-div fl"> | |||
| <div class="logo" onclick="goIndex()"></div> | |||
| <h1 class="fl" id="webConfigName" onclick="goIndex()"></h1> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <!--顶部导航栏 --> | |||
| <div class="top"> | |||
| <ul class="container w-1200"> | |||
| <li><a href="../../index.html">首页</a></li> | |||
| <li><a href="../listingItems/itemsList.html">交易项目</a></li> | |||
| <li><a href="../bidding/biddingList.html">竞价大厅</a></li> | |||
| <li class="active"><a href="../announcement/announcement.html">公示公告</a></li> | |||
| <li><a href="../demand/demand.html">个人供求</a></li> | |||
| <li><a href="../new/newList.html">新闻资讯</a></li> | |||
| <li><a href="../policy/policy.html">政策法规</a></li> | |||
| <li><a href="../interact/interactList.html">互动交流</a></li> | |||
| </ul> | |||
| </div> | |||
| <div class="w-1200"> | |||
| <p class="font16 m-t-15 titIndex"><b style="cursor:pointer;" onclick="history.go(-1)">终止公告</b><i>></i><span>公告详情</span></p> | |||
| <table width="100%" cellpadding="0" border="1" cellspacing="0" id="announcementInformationContent"> | |||
| <script id="announcementInformationData" type="text/html"> | |||
| <tr> | |||
| <td>项目名称</td> | |||
| <td colspan="3">{{announcementInformationDetail.projectName}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>终止原因</td> | |||
| <td colspan="3">{{announcementInformationDetail.terminateReason}}</td> | |||
| </tr> | |||
| <tr> | |||
| <td>项目编号</td> | |||
| <td>{{announcementInformationDetail.projectCode}}</td> | |||
| <td>终止日期</td> | |||
| <td>{{announcementInformationDetail.dealTime.substr(0,10)}}</td> | |||
| </tr> | |||
| </script> | |||
| </table> | |||
| <div id="attachmentListContent" style="margin-top: 2vh;"> | |||
| <script id="attachmentListData" type="text/html"> | |||
| {{each attachmentList as value i}} | |||
| <a href="/api{{value.fileUrl}}" target="downloadFile" style="display: flex;align-items:center;margin-top: 1vh;"> | |||
| <img src="../../static/images/file_icon.png" width="32" style="margin-right: 10px;" alt=""> | |||
| {{value.fileName}} | |||
| </a> | |||
| {{/each}} | |||
| </script> | |||
| </div> | |||
| </div> | |||
| <!--底部链接 --> | |||
| <div class="bottomLink"> | |||
| <div class="w-1200"> | |||
| <div class="w-1000 fl"> | |||
| <p class="bottomLink-tit"><i class="el-icon-link"></i>友情链接</p> | |||
| <script id="friendsLinksData" type="text/html"> | |||
| {{each friendsLinksList as value i}} | |||
| <a href="{{value.url}}" target="_blank">{{value.name}}</a> | |||
| {{/each}} | |||
| </script> | |||
| <div class="bottomLink-linkList" id="friendsLinksContent"></div> | |||
| <p class="ba" id="webConfigRecord"></p> | |||
| <p class="ba" id="webConfigAddress"></p> | |||
| </div> | |||
| <div class="ewm fr"> | |||
| <img src="../../static/images/ewm.jpg" width="110" height="110" alt="" /> | |||
| <p class="ewmtit">关注公众号 了解详情</p> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| </div> | |||
| </div> | |||
| </body> | |||
| <script src="../../static/js/common/require.js" data-main="../../static/js/common/main.js?t=101" id="require-page" | |||
| target-module="../../static/js/project/announcementList/stopDetail.js" defer type="text/javascript"></script> | |||
| </html> | |||