No Description

attentions2.js 5.8KB

    //我的关注 var allPages = 1, // 总页数; pageSize = 0, pageNo = 1; var table = document.body.querySelector('.list'); var nodatabox1 = document.getElementById("nodatabox1"); mui.init({ pullRefresh: { container: '#pullrefresh', /*down: { callback: pulldownRefresh },*/ up: { contentrefresh: '正在加载...', callback: pullupRefresh, //auto:true } } }); function pullupRefresh() { pageNo = ++pageNo; console.log(pageNo); setTimeout(function() { expert2(pageNo, 10) }, 1000); mui('#pullrefresh').pullRefresh().refresh(true); } /*function pulldownRefresh() { setTimeout(function() { getOneExpert(1, 10); mui('#pullrefresh').pullRefresh().endPulldownToRefresh(); }, 1000); }*/ mui.plusReady(function(){ mui('.list').on('tap','a',function(){ var id=this.getAttribute("data-id"); plus.nativeUI.showWaiting(); plus.webview.create("../html/resourceShow.html",'resourceShow.html',{},{resourceId:id}); }) }) getOneExpert(1, 10); /*获取第一页资源数据*/ function getOneExpert(pageNo, pageSize) { mui.plusReady(function() { var userId = plus.storage.getItem('userid'); mui.ajax(baseUrl + '/ajax/watch/qaPro', { data: { "professorId": userId, "watchType": 2, "pageNo": pageNo, "pageSize": pageSize }, dataType: 'json', //数据格式类型 type: 'GET', //http请求类型 //timeout: 10000, //async:false, success: function(data) { plus.nativeUI.closeWaiting(); plus.webview.currentWebview().show("fade-in", 150); table.innerHTML = ''; //mui('#pullrefresh').pullRefresh().refresh(true); //重置上拉加载 if(data.success && data.data.data != "") { var datalist = data.data.data; datalistEach(datalist); mui('#pullrefresh').pullRefresh().refresh(true); if(data.data.total<data.data.pageSize){ mui('#pullrefresh').pullRefresh().disablePullupToRefresh(); //没有数据禁止上拉刷新 } }else { nodatabox1.style.display = 'block'; mui('#pullrefresh').pullRefresh().disablePullupToRefresh(); //没有数据禁止上拉刷新 } }, error: function() { plus.nativeUI.toast("服务器链接超时", toastStyle); } }); }); } /*上拉刷新数据*/ function expert2(pageNo, pageSize) { mui.plusReady(function() { var userId = plus.storage.getItem('userid'); mui.ajax(baseUrl + '/ajax/watch/qaPro', { data: { "professorId": userId, "watchType": 2, "pageNo": pageNo, "pageSize": pageSize }, dataType: 'json', //数据格式类型 type: 'GET', //http请求类型 timeout: 10000, //async:false, success: function(data) { if(data.success && data.data.data != "") { plus.nativeUI.closeWaiting(); mui('#pullrefresh').pullRefresh().enablePullupToRefresh(); //启用上拉刷新 var dice1 = data.data.total; //总条数 var dice2 = data.data.pageSize; //每页条数 allPages = Math.ceil(dice1 / dice2); if(allPages == 1) { //下拉刷新需要先清空数据 table.innerHTML = ''; // 在这里清空可以防止刷新时白屏 } var datalist = data.data.data; datalistEach(datalist); mui('#pullrefresh').pullRefresh().refresh(true); //重置上拉加载 if(pageNo >= allPages) { mui('#pullrefresh').pullRefresh().disablePullupToRefresh(); //没有数据禁止上拉刷新 } } }, error: function() { plus.nativeUI.toast("服务器链接超时", toastStyle); } }); }); } /*资源数据遍历*/ function datalistEach(datalistd) { mui.each(datalistd, function(index, item) { /*获取头像*/ if(item.resource.images.length) { var img = baseUrl + '/data/resource/' + item.resource.images[0].imageSrc.replace(/.jpg/,"_s.jpg"); } else { var img = "../images/default-resource.jpg"; } /*判断用户是否认证*/ if(item.resource.editProfessor) { var oSty = autho(item.resource.editProfessor.authType,item.resource.editProfessor.orgAuth, item.resource.editProfessor.authStatus); oName=item.resource.editProfessor.name; }else { var oSty={}; oSty.sty=""; oSty.title=""; if(item.resource.organization.authStatus==3) { oSty.sty="authicon-com-ok"; oSty.title="科袖认证企业"; } oName=item.resource.organization.name; } // var title = item.resource.editProfessor.title || ""; // var office = item.resource.editProfessor.office || ""; // var orgName = item.resource.editProfessor.orgName || ""; // var address = item.resource.editProfessor.address || ""; // // if(title != "") { // title = title + " , "; // } // if(office != "") { // office = office + " , "; // } // if(orgName != "") { // orgName = orgName; // } // if(address != "") { // address = " | " + address; // } var li = document.createElement('li'); li.className = 'mui-table-view-cell mui-media'; li.innerHTML = '<a class="proinfor" data-id="' + item.resource.resourceId + '"' + '<p><div class="mui-media-object mui-pull-left ResImgBox"><img class="resImg" src="' + img + '"></div></p>' + '<div class="mui-media-body">' + '<span class="listtit">' + item.resource.resourceName + '</span>' + '<p class="mui-ellipsis listtit2">' + item.resource.supportedServices + '</p>' + '<span class="listtit">' +oName+ '<em class="authicon '+oSty.sty+'" title="'+oSty.title+'"></em>'+ // '<span class="listtit">' + item.resource.editProfessor.name + icont + '</span>' + // '<p class="listtit3"><span>' + title + '</span><span>' + office + '</span><span>' + orgName + '</span><span>' + address + '</span></p>' + '</div></a></li>'; table.appendChild(li, table.firstChild); }); }