/** * Created by Administrator on 2021/4/5. */ define(['jquery', "template", "Tools", "newApi", "paging"], function ($, template, Tools ) { //数据存储 var module = { data: { //新闻列表 newsInformationList:'', //页码 pageNum: 1, //页码集合 pageList: [], //每页数量 pageSize: 50, //总页数 pageCount:0 }, }; var tools = new Tools(); module.init = function (page) { if(getQueryVariable('title') ){ console.log('搜索进入') //新闻资讯 tools.doGet(newList, {deptId:100,pageNum:module.data.pageNum,pageSize:module.data.pageSize,title:getQueryVariable('title')}, module.NewsInformation,true); }else{ //新闻资讯 tools.doGet(newList, {number:2,deptId:100,pageNum:module.data.pageNum,pageSize:module.data.pageSize}, module.NewsInformation,true); } }; //获取地址栏参数 function getQueryVariable(variable){ var query = window.location.search.substring(1); var vars = query.split("&"); for (var i=0;i