completed.js
1.7 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
$(document).ready(function() {
//查看已完成的项目
$.ajax({
type: 'GET',
url: 'http://192.168.1.241:9004/userProgram/userProgramById',
headers: {
"Content-Type": "application/json",
"token": localStorage.getItem('token'),
},
success: function(res) {
console.log(res);
$.each(res.data, 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>`
$('#completeProject').append(title)
})
}
})
})
//获取用户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'
}
}
})
}