oa系統中,領導要對員工的的申請進行審批,如此多的員工,不可能一下子都顯示出來,需要後台進行分頁,每次上拉觸底載入一頁,每次上拉觸底載入一頁。
注:因為各方面原因,不能上傳源**,只提供思路和偽**
data:
,onload:
function
(options)
,onreachbottom:
function()
init:
function()
this
.setdata()
;// 待我審批的-url
wx.request(,
method:
"get"
, success:
function
(res));
wx.hideloading()
;}, fail:
function
(res)})
;// 我已審批的-url
wx.request(,
method:
"get"
, success:
function
(res));
},fail:
function
(res)})
;},onload:
function()
,onreachbottom:
function()
);wx.
showloading()
; wx.
request(,
method:
"get"
, success:
function
(res));
},fail:
function
(res)})
;}}else
if(currenttab ==))
; wx.
showloading()
;let data =
; data.pagesize = that.data.pagesize;
data.openid = wx.
getstoragesync
('openid');
wx.request()
;}, fail:
function
(res)})
;}}}
微信小程式上拉載入更多
一般上拉載入更多用於資料太多,一次載入完成資料卡頓,差不多就是乙個分頁的功能,寫法很簡單,首頁data資料中先定義乙個page為1,第一次進入頁面呼叫介面將為1的page傳給後台,隨後在小程式自帶的onreachbottom函式中操作 onreachbottom function 顯示載入圖示 wx...
微信小程式上拉載入,下拉重新整理
首先在對應的json檔案中開啟 enablepulldownrefresh true首先介紹上拉載入的方法 1.data中定義 data 2.請求資料方法 getcompanylist data success res if res.data.items 0 else let listdata th...
微信小程式 上拉重新整理和下拉載入
上拉重新整理和下拉加載有兩種方式可以實現 1.使用scroll view元件進行操作,使用自帶的scrolltoupper和scrolltolower事件可以實現。適合頁面區域性的上拉下拉。附上文件 2.使用page頁面事件處理函式 onpulldownrefresh 下拉重新整理 和 onreac...