123456789101112131415161718192021222324252627282930313233343536373839 |
- let app = getApp()
- Page({
- data: {
- groupId: 0,
- tableData: [],
- types:{
- 1:'判断题',
- 2:'单选题',
- 3:'多选题',
- 4:'案例题'
- }
- },
- onLoad: function(options) {
- let groupId = +options.groupId||1;
- this.setData({ groupId });
- },
- onShow: function () {
- app.checkLogin( userInfo =>{
- this.setData({userInfo, from:0})
- this.loadData()
- })
- },
- gotoAnswer(e){
- let item = e.currentTarget.dataset.item;
- let groupId = this.data.groupId
- console.log( item )
- wx.navigateTo({
- url: `/pages/newExam/orderTest/index?groupId=${groupId}&type=${item.type}&count=${item.count}`
- })
- },
- loadData: function(){
- let param= {groupId: this.data.groupId}
- app.formPost('Exam.InitGroupAnswer', param ).then(res => {
- if( res.code == 200){
- this.setData({tableData: res.data})
- }
- })
- }
- })
|