answers.js
2.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
$(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)
})
}
}
})
}
})
//获取用户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'
}
}
})
}