walletdetail.js 650 字节
new Vue({
	el:'#walletdetail',
	data: {	
	 detail:[]
	

	},
	created: function() {
		this.details();
	},
	methods: {
		//获取信息
		details: function() {
			var that = this;
			var url = '/WalletLog/myPayLog'
			var params = {
				
				unique_id: localStorage.getItem('unique_id')
			}
			ajaxsend(url, params, function(res) {
				/*console.log(JSON.stringify(res))*/
				console.log(res);
				var data=res.data;
				console.log(data);
				that.detail=data;
				console.log(that.detail)
//				if(res.status==true){
//					var data=res.data;
//					that.money=data;
//					console.log(that.money)
//				}
				
				
	
			})
		},
		
		
		
	},
	
	
})