import create from 'dd-store'
import exampleStore from '/stores/exampleStore'
create.Page({
store: exampleStore,
useAll: true,
data: {
allUserList: [],
},
onLoad(event) {
let allUserList = JSON.parse(event.userList)
this.setData({
allUserList: allUserList
})
dd.setNavigationBar({
title: `参会人(${this.data.allUserList.length}人)`
})
console.log(this.data.allUserList)
},
});