evalutelist.js
763 字节
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
var goods_id=GetQueryString("goodid");
new Vue({
el:'#evalutelist',
data:{
goodlist:[],
},
created: function() {
this.details();
},
methods: {
//获取信息
details: function() {
var that = this;
var url = '/MyComment/commentList'
var params = {
goods_id:goods_id
}
ajaxsend(url, params, function(res) {
/*console.log(JSON.stringify(res))*/
console.log(res);
that.goodlist=res.data;
console.log(that.goodlist);
for(var i=0;i<that.goodlist.length;i++){
var commentphoto=that.goodlist[i].comment_photo;
console.log(commentphoto);
commentphoto=commentphoto.split(",");
console.log(commentphoto);
that.goodlist[i].comment_photo=commentphoto;
}
})
},
},
})