group.js 608 B

123456789101112131415161718192021222324252627
  1. let app = getApp()
  2. Page({
  3. data: {
  4. answerId:0,
  5. groupId:0,
  6. tableData: []
  7. },
  8. onLoad: function(options) {
  9. let groupId = +options.groupId||1;
  10. let answerId = +options.answerId||0;
  11. this.setData({ groupId, answerId });
  12. },
  13. onShow: function () {
  14. app.checkLogin( userInfo =>{
  15. this.setData({userInfo, from:0})
  16. this.indexLoad()
  17. })
  18. },
  19. indexLoad: function() {
  20. let param = {groupId: this.data.groupId}
  21. app.formPost('Exam.GetWxGroupPaperList', param ).then(res => {
  22. if( res.code == 200){
  23. this.setData({tableData: res.data})
  24. }
  25. })
  26. }
  27. })