diff --git a/static/js/api/announcementList.js b/static/js/api/announcementList.js index 0a20151..74d31c9 100644 --- a/static/js/api/announcementList.js +++ b/static/js/api/announcementList.js @@ -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} diff --git a/static/js/project/announcementList/abnormalDetail.js b/static/js/project/announcementList/abnormalDetail.js new file mode 100644 index 0000000..a33ac8c --- /dev/null +++ b/static/js/project/announcementList/abnormalDetail.js @@ -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{ + 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; +}); diff --git a/static/js/project/announcementList/announcementList.js b/static/js/project/announcementList/announcementList.js index 4909c60..2896dfc 100644 --- a/static/js/project/announcementList/announcementList.js +++ b/static/js/project/announcementList/announcementList.js @@ -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; -}); \ No newline at end of file +}); diff --git a/static/js/project/announcementList/stopDetail.js b/static/js/project/announcementList/stopDetail.js new file mode 100644 index 0000000..2d1b6bb --- /dev/null +++ b/static/js/project/announcementList/stopDetail.js @@ -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 + + + + + 农村资源信息港 + + + + + + + + + + + +
+ +
+
+ 阳光三资公示公开 + YANG GUANG SAN ZI GONG SHI GONG KAI +
+
+
+

2025年7月14日 18:12:56

+

星期一

+
+
+

用户名

+ +
+
+
+ +
+ +
+ + + +
+

查询年月

+
+ + data_input +
+

查询

+

重置

+
+ +
+
+
+ 明细公开榜 +
+
+
+
公开单位:夏庄村民委员会合作联合社
+
账期:2025年06月
+
单位:元
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
2025年摘要发生额结存
凭证号借方发生贷方发生
20250.00
06记-118491.0018491.00
+ +
+ + +
+ + + +
+ + + diff --git a/sunVillage_info/static/css/incomeAndExpenditure.css b/sunVillage_info/static/css/incomeAndExpenditure.css new file mode 100644 index 0000000..2bfb4d0 --- /dev/null +++ b/sunVillage_info/static/css/incomeAndExpenditure.css @@ -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; +} diff --git a/sunVillage_info/static/css/index.css b/sunVillage_info/static/css/index.css index d887ec2..2d388e1 100644 --- a/sunVillage_info/static/css/index.css +++ b/sunVillage_info/static/css/index.css @@ -431,7 +431,7 @@ } .footer_main{ height: 20vh; - background: #ffffff; + background: #f9f9f9; display: flex; padding: 1.5vh 20%; align-items: center; diff --git a/sunVillage_info/static/js/project/incomeAndExpenditure.js b/sunVillage_info/static/js/project/incomeAndExpenditure.js new file mode 100644 index 0000000..e264a98 --- /dev/null +++ b/sunVillage_info/static/js/project/incomeAndExpenditure.js @@ -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; +}); diff --git a/view/announcement/abnormalDetail.html b/view/announcement/abnormalDetail.html new file mode 100644 index 0000000..0dd3a08 --- /dev/null +++ b/view/announcement/abnormalDetail.html @@ -0,0 +1,220 @@ + + + + + + 产权交易-公示公告 + + + + + + + + + + +
+
+ +
+ +
+ +
+
+

Hi,欢迎来到农村产权交易中心

+
+ + +
+ + + + + + 返回主站 + + + + + +
+
+
+ +
+
+ +

+
+
+
+
+ + + +
+

异常公告>公告详情

+ + +
+
+ +
+
+ + +
+ + + diff --git a/view/announcement/announcement.html b/view/announcement/announcement.html index 972e695..d181dda 100644 --- a/view/announcement/announcement.html +++ b/view/announcement/announcement.html @@ -147,6 +147,8 @@ @@ -182,6 +184,32 @@ + + + + + + + + +
+ + + +
+
+

Hi,欢迎来到农村产权交易中心

+
+ + +
+ + + + + + 返回主站 + + + + + +
+
+
+ +
+
+ +

+
+
+
+
+ + + +
+

终止公告>公告详情

+ + +
+
+ +
+
+ + + + + +