recommend.js 5.0 KB
$(document).ready(function() {
        //查看已推荐的项目
        var url = "/warrantyTwo/warrantyTwos"; // 接口    
        var header = {
            "Content-Type": "application/json",
            "token": localStorage.getItem('token'),
        }
        var params = JSON.stringify({
                current: 1,
                size: 4
            })
            // 调用公共ajax
        ajax(url, "POST", header, params, function(res) {
                console.log(res);
                $("#recommend-num").html(res.data.records.length)
                $.each(res.data.records, function(key, value) {
                    let title = `<div class="col-lg-32 col-sm-60" style="display: flex;place-content: center;background-color: #fff;">
    <a href="#" class="portfolio-box3" style="display: flex;">
        <img src="${value.img2}" alt="" style="width:25%;margin-right: 5%;">
        <div style="display: flex; flex-direction: column;">
            <h5 style="color: #323232;">${value.field}</h5>
            <p style="padding-top: 10%;color: #5a5a5a;">${value.futitle}</p>
        </div>
    </a>
</div>`
                    $('#allProject').append(title)
                })
            }, function(res) {
                console.log(res);
            })
            // $.ajax({
            //         type: 'POST',
            //         url: 'http://192.168.1.241:9004/warrantyTwo/warrantyTwos',
            //         headers: {
            //             "Content-Type": "application/json",
            //             "token": localStorage.getItem('token'),
            //         },
            //         data: JSON.stringify({
            //             current: 1,
            //             size: 4
            //         }),
            //         success: function(res) {
            //             console.log(res);
            //             $("#recommend-num").html(res.data.records.length)
            //             $.each(res.data.records, function(key, value) {
            //                 let title = `<div class="col-lg-32 col-sm-60" style="display: flex;place-content: center;background-color: #fff;">
            //     <a href="#" class="portfolio-box3" style="display: flex;">
            //         <img src="${value.img2}" alt="" style="width:25%;margin-right: 5%;">
            //         <div style="display: flex; flex-direction: column;">
            //             <h5 style="color: #323232;">${value.field}</h5>
            //             <p style="padding-top: 10%;color: #5a5a5a;">${value.futitle}</p>
            //         </div>
            //     </a>
            // </div>`
            //                 $('#allProject').append(title)
            //             })
            //         }
            //     })
            //查看个人信息赋值名字
        var url2 = "/login/userInfo"; // 接口    
        // 调用公共ajax
        ajax(url2, "GET", header, function(res) {
                console.log(res);
                $("#header-name").html(res.data.surname + res.data.userName)
                $("#title-name").html(res.data.surname + res.data.userName)
            }, function(res) {
                console.log(res);
            })
            // $.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);
            //         console.log(res.data.surname + res.data.userName);
            //         $("#header-name").html(res.data.surname + res.data.userName)
            //         $("#title-name").html(res.data.surname + res.data.userName)
            //     }
            // })
    })
    //获取用户VIP信息判断是否是VIP
function setPersonal() {
    var url = "/login/userInfo"; // 接口    
    var header = {
        "Content-Type": "application/json",
        "token": localStorage.getItem('token'),
    }

    // 调用公共ajax
    ajax(url, "GET", header, function(res) {
            console.log(res);
            if (res.data.status1 == 1) {
                window.location.href = 'personalCenter.html'
            } else {
                window.location.href = 'personalCenter2.html'
            }
        }, function(res) {
            console.log(res);
        })
        // $.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'
        //         }
        //     }
        // })
}