取消事件
id传值
<template slot-scope="scope">
<el-button type="danger" size="mini" @click="handleDel(scope.row.id)">取消提现</el-button>
</template>
接口删除
this.$axios.delete(`/user/balance/cash/${id}`).then(res=>{
this.$message({
type: 'success',
message: '删除成功!'
});
});