/** * Created by Administrator on 2021/4/5. */ define(['jquery', "template", "Tools"], function ($, template, Tools) { //数据存储 var module = { data: { //服务器地址 serverApi:'', //焦点图数据 focusList: [], communicateList: [], }, }; var tools = new Tools(); module.init = function (page) { //新闻详情 tools.doGet(newsDetail+getQueryVariable('id'), {}, module.newsDetail , true); //新闻列表 tools.doGet(newsList, {pageNum:1,pageSize:8}, module.newsList , true); tools.doGet(webList, {}, module.webList , true); }; //获取地址栏参数 function getQueryVariable(variable){ var query = window.location.search.substring(1); var vars = query.split("&"); for (var i=0;i