/** * Created by Administrator on 2021/4/5. */ define(['jquery', "template", "Tools", "echarts", 'swiper'], function ($, template, Tools, echarts, swiper) { //数据存储 var module = { data: { //服务器地址 serverApi:'', //焦点图数据 focusList: [], communicateList: [], communicateOptions:[] }, }; var tools = new Tools(); module.init = function (page) { //新闻管理列表 tools.doGet(dictType + '/communicate_type', {}, module.dictType , true); }; //获取地址栏参数 function getQueryVariable(variable){ var query = window.location.search.substring(1); var vars = query.split("&"); for (var i=0;i document.body.offsetHeight){ document.getElementById('bottomInformation').style.position = 'relative'; } } } module.selectDictLabel = function (datas, value) { var actions = []; Object.keys(datas).some((key) => { if (datas[key].dictValue == ('' + value)) { actions.push(datas[key].dictLabel); return true; } }) return actions.join(''); } goDetail = function(id){ tools.skip('/agriculturalLawEnforcement/view/workDynamics/workDetail.html?id='+id); } return module; });