move.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <template>
  2. <el-dialog title="移动到" :visible.sync="dialogVisible" width="480px" :close-on-click-modal="false" custom-class="moveDialog">
  3. <div>
  4. <el-cascader v-model="value" :options="treeData" :props="defaultProps" size="small" style="width: 100%"></el-cascader>
  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 { queryCategoryGraph, 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. defaultProps: {
  24. children: 'categoryList',
  25. label: 'name',
  26. value: 'code'
  27. },
  28. dialogVisible: false,
  29. value: [],
  30. treeData: [],
  31. data: []
  32. };
  33. },
  34. mounted() {
  35. this.init()
  36. },
  37. methods: {
  38. init() {
  39. queryCategoryGraph({ switch: true }).then(res => {
  40. this.treeData = res.content;
  41. })
  42. },
  43. showDialog(data) {
  44. this.dialogVisible = true;
  45. this.data = data;
  46. },
  47. // 确认修改
  48. confirm() {
  49. if (!this.value.length || !this.data.length) {
  50. return
  51. }
  52. const categoryId = this.value[this.value.length - 1]
  53. const pa = {
  54. content: [],
  55. projection: ['categoryId']
  56. }
  57. pa.content = this.data.map(t => {
  58. return {
  59. id: t.id,
  60. graphId: t.graphId,
  61. categoryId: categoryId
  62. }
  63. })
  64. if (this.isPub) { // 已发布
  65. updatePubGraph(pa).then(res => {
  66. this.updateCall(res)
  67. })
  68. } else { // 未发布
  69. updateDraftsGraph(pa).then(res => {
  70. this.updateCall(res)
  71. })
  72. }
  73. },
  74. // 更新成功回调
  75. updateCall(res) {
  76. this.value = [];
  77. if (res.result == "success") {
  78. this.dialogVisible = false;
  79. this.$message.success('移动成功');
  80. this.$emit("moveSuc")
  81. } else {
  82. this.$message(res.message)
  83. }
  84. }
  85. }
  86. };
  87. </script>
  88. <style lang="less">
  89. .moveDialog {
  90. /deep/ .el-dialog__header {
  91. border-bottom: 1px solid #f0f1f2ff;
  92. }
  93. /deep/ .el-dialog__body {
  94. padding: 16px 60px;
  95. }
  96. .el-dialog__footer {
  97. padding: 14px 20px 20px;
  98. .el-button {
  99. padding: 0;
  100. width: 80px;
  101. height: 32px;
  102. text-align: center;
  103. line-height: 1;
  104. }
  105. }
  106. }
  107. </style>