榆山数据端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
1.4 KiB

import { getMemberList } from '../../../../api/clerkOnline'
Page({
/**
*
*/
data: {
memberList: [],//群成员列表
preloadVisible:true,
isShow:false,
},
/**
* --
*/
onLoad: function (options) {
this.getMemberList()//查看群成员列表
},
/**
*
*/
async getMemberList() {
try {
const res: any = await getMemberList()
console.log('列表', res)
this.setData({
memberList: res.data,
preloadVisible: false,
})
console.log('列表', this.data.memberList)
} catch (err) {
console.log(err)
this.setData({
memberList: []
})
}
},
/**
* --
*/
onReady: function () {
},
/**
* --
*/
onShow: function () {
},
/**
* --
*/
onHide: function () {
},
/**
* --
*/
onUnload: function () {
},
/**
* --
*/
onPullDownRefresh: function () {
},
/**
*
*/
onReachBottom: function () {
},
/**
*
*/
onShareAppMessage: function () {
}
})