var deceleration = mui.os.ios ? 0.003 : 0.0009; mui('.mui-scroll-wrapper').scroll({ bounce: false, indicators: true, //是否显示滚动条 deceleration: deceleration }); mui.ready(function() { mui.plusReady(function() { var self = plus.webview.currentWebview(); var proId = self.proid; var rows = 10, pullRefreshEl, currentIndex, currentSelf, dataO = { resPublishTime:"", resShareId:"", } var oAjax = function(url, dataS, otype, oFun) { mui.ajax(baseUrl + url, { dataType: 'json', type: otype, data: dataS, traditional: true, success: function(res) { if(res.success) { oFun(res) } } }); }, insertNodata = function(targetE, newStr) { var parent = document.getElementById(targetE).parentNode; var kong = document.createElement("div"); kong.className = "con-kong"; kong.innerHTML = '
' + '
暂时没有符合该搜索条件的内容
' if(newStr) { kong.querySelector(".txtbox").innerHTML = newStr; } if(parent.firstChild.className == "con-kong") { return } else { parent.insertBefore(kong, parent.firstChild); } }, removeNodata = function (targetE) { var parent = document.getElementById(targetE).parentNode; if (parent.firstChild.className == "con-kong") { parent.removeChild(parent.firstChild); } else { return } }, resourceListVal = function(tabIndex) { var aimId = "resourceShow", newStr = "他尚未发布任何资源" oAjax("/ajax/resource/publish",{ "category": "1", "owner":proId, "publishTime":dataO.resPublishTime, "shareId": dataO.resShareId, "rows": rows }, "get", function(res){ plus.nativeUI.closeWaiting(); plus.webview.currentWebview().show("slide-in-right", 150); console.log(JSON.stringify(res)) var obj = res.data; if(obj.length > 0) { dataO.resPublishTime = obj[obj.length - 1].publishTime; dataO.resShareId = obj[obj.length - 1].shareId; for(var i = 0; i < obj.length; i++) { var cnt = "", hasImg = "../images/default-resource.jpg" if(obj[i].images.length) { hasImg = baseUrl + '/data/resource/' + obj[i].images[0].imageSrc } if(obj[i].supportedServices) { cnt = "用途:" + obj[i].supportedServices } var li = document.createElement("li"); li.setAttribute("data-id", obj[i].resourceId); li.className = "mui-table-view-cell"; li.innerHTML = '
' + '
' + '
' + '

' + obj[i].resourceName + '

' + '

' + cnt + '

' + '
' + '
' document.getElementById(aimId).appendChild(li); } } if (currentIndex != tabIndex) { currentIndex = tabIndex; mui.each(document.querySelectorAll('.mui-scroll'), function ($_index, pullRefreshEl) { if ($_index == tabIndex) { currentSelf = mui(pullRefreshEl).pullToRefresh({ up: { callback: function () { if(currentSelf.loading){ setTimeout(function () { resourceListVal(tabIndex) currentSelf.endPullUpToRefresh(); }, 1000); } } } }); } }) } var liLen = document.getElementById(aimId).querySelectorAll("li").length; removeNodata(aimId); if(obj.length == 0 && liLen == 0) { document.getElementById(aimId).style.display="none"; insertNodata(aimId, newStr); } if(obj.length < rows) { currentSelf.endPullUpToRefresh(true); } else { currentSelf.endPullUpToRefresh(false); } }) }, bindClikFun=function(){ mui('#resourceShow').on('tap', 'li', function() { var id = this.getAttribute("data-id"); plus.nativeUI.showWaiting(); plus.webview.create("../html/resourceShow.html", 'resourceShow.html', {}, { resourceId: id }); }) document.getElementsByClassName("topback")[0].addEventListener("tap", function() { var web = plus.webview.getWebviewById("cmpInforShow.html"); if(web) mui.fire(web, "newId", { rd: 1 }); }) } resourceListVal(0) bindClikFun() }) })