华西海圻ELN前端工程
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
940 B

  1. <template>
  2. <div>
  3. <el-popconfirm confirm-button-text='确认' cancel-button-text='取消' icon="el-icon-info" icon-color="red"
  4. title="确认删除当前数据?" @confirm="deleteRow(rowIndex)">
  5. <el-button slot="reference" type="text" size="small" class="delete-button">
  6. 删除
  7. </el-button>
  8. </el-popconfirm>
  9. </div>
  10. </template>
  11. <script>
  12. import operationMixins from "../mixins/operationMixins";
  13. export default {
  14. name: "TableOpertaionDelete",
  15. mixins: [operationMixins],
  16. props: {
  17. row: {
  18. type: Object,
  19. default: () => { },
  20. },
  21. rowIndex: {
  22. type: Number,
  23. default: 0,
  24. },
  25. columns: {
  26. type: Object,
  27. default: () => { },
  28. }
  29. },
  30. methods: {
  31. }
  32. }
  33. </script>
  34. <style lang="scss" scoped>
  35. .delete-button {
  36. color: red;
  37. }
  38. </style>