// html
<span @click="getdata" :data-id="ids" >待付款</span>
// VUE
getdata:function(e){
console.log(e.srcElement.dataset.id)
}
// html
<span @click="getdata" :data-id="ids" >待付款</span>
// VUE
getdata:function(e){
console.log(e.srcElement.dataset.id)
}