evalutelist.js 763 字节

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;
				
				}
				
			})
		},
	
	},

})