aboutus.js 437 字节
new Vue({
	el:'#aboutus',	
	data:{
		about:[],
		
		
	},
	created: function() {
		this.details();
	},
	methods: {
		//获取信息
		details: function() {
			var that = this;
			var url = '/News/aboutUs'
			var params = {
					
			}
			ajaxsend(url, params, function(res) {
				/*console.log(JSON.stringify(res))*/
				console.log(res);
				var data=res.data;
				that.about=data;
				console.log(that.about)
				
				
			})
		}
	
	}

})