rename.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <template>
  2. <el-dialog title="重命名" :visible.sync="dialogVisible" width="480px" :close-on-click-modal="false">
  3. <div>
  4. <el-input v-model="input" placeholder="请输入名称"></el-input>
  5. </div>
  6. <span slot="footer" class="dialog-footer">
  7. <el-button @click="dialogVisible = false">取 消</el-button>
  8. <el-button type="primary" @click="confirm">确 定</el-button>
  9. </span>
  10. </el-dialog>
  11. </template>
  12. <script>
  13. import { updateDraftsGraph, updatePubGraph } from "@/api/home"
  14. export default {
  15. props: {
  16. isPub: {
  17. type: Number,
  18. default: 0
  19. }
  20. },
  21. data() {
  22. return {
  23. dialogVisible: false,
  24. input: '',
  25. data: {}
  26. };
  27. },
  28. methods: {
  29. showDialog(data) {
  30. this.dialogVisible = true;
  31. this.input = data.name;
  32. this.data = data;
  33. },
  34. // 确认修改
  35. confirm() {
  36. const newName = this.input.trim()
  37. if (!newName) {
  38. return
  39. }
  40. const pa = {
  41. content: [{
  42. id: this.data.id,
  43. graphId: this.data.graphId,
  44. name: newName
  45. }],
  46. projection: ['name']
  47. }
  48. if (this.isPub) { // 已发布
  49. updatePubGraph(pa).then(res => {
  50. this.updateCall(res)
  51. })
  52. } else { // 未发布
  53. updateDraftsGraph(pa).then(res => {
  54. this.updateCall(res)
  55. })
  56. }
  57. },
  58. // 更新成功回调
  59. updateCall(res) {
  60. if (res.result == "success") {
  61. this.dialogVisible = false;
  62. this.$emit("updateSuc")
  63. this.$message.success('更新成功');
  64. } else {
  65. this.$message(res.message)
  66. }
  67. }
  68. }
  69. };
  70. </script>