Files
2024-08-22 12:53:28 +08:00

21 lines
442 B
JavaScript

var t = getApp();
Page({
data: {
data: []
},
onLoad: function(t) {},
onShow: function() {
this.getYonghuList();
},
getYonghuList: function(a) {
var o = this;
t._get("user/getyonghulist", {}, function(t) {
t.data.list.length && wx.pageScrollTo({
scrollTop: 0
}), o.setData({
data: t.data.list
});
});
}
});