learningContent.js 2.1 KB
$(document).ready(function() {
    var url = window.location.search;
    console.log(url);
    if (url.indexOf('?') != -1) {
        newId = url.substr(4)
        console.log(newId);

        //获取左边实习内容list
        $.ajax({
            type: 'GET',
            url: 'http://192.168.1.241:9004/recommend/recommendTwoList',
            headers: {
                "Content-Type": "application/x-www-form-urlencoded",
                "token": localStorage.getItem('token'),
            },
            data: {
                id: newId
            },
            success: function(res) {
                console.log(res);
                for (let i in res.data) {
                    console.log(res.data);

                    let title = `<div>
                                    <div id="title-head">${res.data[i].headline}</div>
                                </div>
                                <div id="content-l">
                                </div>`
                    $("#title-content").append(title)
                }
                for (let i in res.data) {
                    $.each(res.data[i].recommendThrees, function(index, val) {
                        console.log(val.subhead);
                        let title1 = `<p id="content-list" style='display:flex'><input type="radio" class="input-radio" name='input-radio'>${val.subhead}</input></p>`
                        $("#content-l").append(title1)
                    })
                }

            }
        })

    }


})

function setQuestionId() {
    window.location.href = 'question.html?id=' + newId
    console.log(newId);
}
//获取用户VIP信息判断是否是VIP
function setPersonal() {
    $.ajax({
        type: 'GET',
        url: 'http://192.168.1.241:9004/login/userInfo',
        headers: {
            "Content-Type": "application/json",
            "token": localStorage.getItem('token'),
        },
        success: function(res) {
            console.log(res);
            if (res.data.status1 == 1) {
                window.location.href = 'personalCenter.html'
            } else {
                window.location.href = 'personalCenter2.html'
            }
        }
    })
}