作者:三生石512606 | 来源:互联网 | 2023-10-13 05:45
1234 没有更多了 上面是模板123456789101112131415reportPrice(id){ alert(); let self = this;
上面是模板
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| reportPrice(id){
alert();
let self = this;
var url = Lib.api.project_reports_price;
var params = {
'access_token': USER.access_token,
'reportId': id
}
var callback = (response)=>{
if(response.code==200){
self.price = response.price;
}
}
Lib.run.ajax(url,'post',params,callback);
} |
这个是绑定的事件,alert都不出来,请问是什么原因