recycleDialog.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template>
  2. <el-dialog title="提示" :visible.sync="dialogVisible" width="480px" :close-on-click-modal="false" append-to-body>
  3. <p>原拓扑图已存在新图,是否覆盖?</p>
  4. <span slot="footer" class="dialog-footer">
  5. <el-button @click="dialogVisible = false">取 消</el-button>
  6. <el-button type="primary" @click="confirm">确 定</el-button>
  7. </span>
  8. </el-dialog>
  9. </template>
  10. <script>
  11. import { recoveryGraph, queryDraftsGraph } from "@/api/home"
  12. export default {
  13. data() {
  14. return {
  15. dialogVisible: false,
  16. data: {}
  17. };
  18. },
  19. methods: {
  20. showDialog(data) {
  21. this.data = data;
  22. this.getDraftsGraph()
  23. },
  24. // 查询草稿箱当前拓扑图是否存在新图
  25. getDraftsGraph() {
  26. const pa = {
  27. filters: `state=1;graphId="${this.data.graphId}"`
  28. }
  29. queryDraftsGraph(pa).then(res => {
  30. if (res.content.length) {
  31. this.dialogVisible = true;
  32. } else {
  33. this.confirm()
  34. }
  35. })
  36. },
  37. // 确认恢复
  38. confirm() {
  39. const pa = {
  40. id: this.data.id,
  41. graphId: this.data.graphId
  42. }
  43. recoveryGraph(pa).then(res => {
  44. this.updateCall(res)
  45. })
  46. },
  47. // 恢复成功回调
  48. updateCall(res) {
  49. if (res.result == "success") {
  50. this.dialogVisible = false;
  51. this.$emit("recoverSuc");
  52. this.$message.success('恢复成功');
  53. } else {
  54. this.$message(res.message)
  55. }
  56. }
  57. }
  58. };
  59. </script>