getStudycontent.js 1.7 KB
const app = getApp()

Page({

    /**
     * 页面的初始数据
     */
    data: {
        id: '',
        list: '',
        shi:''
    },
    onLoad: function (options) {
        // console.log(options)
        this.setData({
            id: options.id
        })
        
        
    },

    onReady: function () {

    },

    onShow: function () {
        let that = this;
        that.getlist();


    },

    // 答题
    getanswer() {
        let that = this
        var id = that.data.id
        console.log(id)
        wx.navigateTo({
            url: '/pages/getStudycontent/answer/answer?id='+id,
        })

    },
    // 内容
    getlist() {

        let that = this;
        let url = '/index/second/getClassInfo';
        let head = {
            'XX-Token': wx.getStorageSync('token')
        }
        let params = {
            id: that.data.id
        }
        app.post(url, params, head).then((res) => {
            console.log(res)

            let shi = res.content
            shi = shi.replace(/\<img/gi, '<img style="width:100%;height:auto" ')
            that.setData({
                shi: shi,
                list: res
            })


            
        }).catch((err) => {

        })

    },









    onHide: function () {

    },

    /**
     * 生命周期函数--监听页面卸载
     */
    onUnload: function () {

    },

    /**
     * 页面相关事件处理函数--监听用户下拉动作
     */
    onPullDownRefresh: function () {

    },

    /**
     * 页面上拉触底事件的处理函数
     */
    onReachBottom: function () {

    },

    /**
     * 用户点击右上角分享
     */
    onShareAppMessage: function () {

    }
})