| 12345678910111213141516171819202122232425262728 |
- <template>
- <div class="inline-16">
- <el-popconfirm title="确定终止当前合同吗?" @confirm="deleteRow()">
- <el-button slot="reference" size="mini">终 止</el-button>
- </el-popconfirm>
- </div>
- </template>
- <script>
- export default {
- props: ['id'],
- methods: {
- async deleteRow () {
- let res = await this.$api.requested({
- "id": "20221212102802",
- "version": 1,
- "content": {
- "sa_contractid": this.id
- }
- })
- this.tool.showMessage(res, () => {
- this.$emit('onSuccess')
- })
- },
- }
- }
- </script>
|