1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <template>
- <el-dialog title="重命名" :visible.sync="dialogVisible" width="480px" :close-on-click-modal="false">
- <div>
- <el-input v-model="input" placeholder="请输入名称"></el-input>
- </div>
- <span slot="footer" class="dialog-footer">
- <el-button @click="dialogVisible = false">取 消</el-button>
- <el-button type="primary" @click="confirm">确 定</el-button>
- </span>
- </el-dialog>
- </template>
- <script>
- import { updateDraftsGraph, updatePubGraph } from "@/api/home"
- export default {
- props: {
- isPub: {
- type: Number,
- default: 0
- }
- },
- data() {
- return {
- dialogVisible: false,
- input: '',
- data: {}
- };
- },
- methods: {
- showDialog(data) {
- this.dialogVisible = true;
- this.input = data.name;
- this.data = data;
- },
- // 确认修改
- confirm() {
- const newName = this.input.trim()
- if (!newName) {
- return
- }
- const pa = {
- content: [{
- id: this.data.id,
- graphId: this.data.graphId,
- name: newName
- }],
- projection: ['name']
- }
- if (this.isPub) { // 已发布
- updatePubGraph(pa).then(res => {
- this.updateCall(res)
- })
- } else { // 未发布
- updateDraftsGraph(pa).then(res => {
- this.updateCall(res)
- })
- }
- },
- // 更新成功回调
- updateCall(res) {
- if (res.result == "success") {
- this.dialogVisible = false;
- this.$emit("updateSuc")
- this.$message.success('重命名成功');
- } else {
- this.$message(res.message)
- }
- }
- }
- };
- </script>
|