wallet.js
539 字节
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
new Vue({
el:'#wallet',
data: {
money:''
},
created: function() {
this.details();
},
methods: {
//获取信息
details: function() {
var that = this;
var url = '/UserCenter/getBalance'
var params = {
unique_id: localStorage.getItem('unique_id')
}
ajaxsend(url, params, function(res) {
/*console.log(JSON.stringify(res))*/
console.log(res);
if(res.status==true){
var data=res.data;
that.money=data;
console.log(that.money)
}
})
},
},
})