12345678910111213141516171819202122232425262728 |
- <template>
- <div style="display:inline;margin:0 16px">
- <el-popconfirm title="确定删除当前数据吗?" @confirm="deleteRow()">
- <el-button slot="reference" size="small" type="text">删 除</el-button>
- </el-popconfirm>
- </div>
- </template>
- <script>
- export default {
- props: ['id'],
- methods: {
- async deleteRow() {
- let res = await this.$api.requested({
- "id": 20220905165302,
- "content": {
- "sa_salestargetid": this.id
- },
- })
- console.log(res);
- this.tool.showMessage(res,() => {
- this.$emit('deleteSuccess')
- })
- },
- }
- }
- </script>
|