【前端】智能库房综合管理系统前端项目
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
910 B

  1. <template>
  2. <div>
  3. <el-dialog
  4. title="移出确认"
  5. :visible.sync="deleteVisible"
  6. :before-close="handleClose"
  7. >
  8. <span class="dialog-right-top" />
  9. <span class="dialog-left-bottom" />
  10. <div class="setting-dialog">
  11. <p><span style="color: #fff">确定将所选数据移出{{ listName }}</span></p>
  12. <div slot="footer" class="dialog-footer">
  13. <el-button
  14. type="primary"
  15. @click.native="handleConfirm"
  16. >确定</el-button>
  17. </div>
  18. </div>
  19. </el-dialog>
  20. </div>
  21. </template>
  22. <script>
  23. export default {
  24. props: ['listName'],
  25. data() {
  26. return {
  27. deleteVisible: false
  28. }
  29. },
  30. methods: {
  31. handleConfirm() {
  32. this.deleteVisible = false
  33. // this.reconfirmDeleteVisible = true
  34. }
  35. }
  36. }
  37. </script>
  38. <style lang="scss" scoped>
  39. </style>