1234567891011121314151617181920212223242526272829 |
- // pages/answerInfo/index.js
- const app = getApp();
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- question: {}
- },
- onLoad(e) {
- wx.setNavigationBarTitle({
- title: app.globalData.selectQuestion.name
- })
- this.setData({
- question: {
- list: [],
- duration: 0,
- name: "",
- ...app.globalData.selectQuestion
- }
- })
- },
- start() {
- wx.reLaunch({
- url: '/pages/answer/index'
- })
- }
- })
|