move.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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 { updateDraftsGraph, updatePubGraph } from "@/api/home"
  14. import { mapState } from "vuex";
  15. export default {
  16. props: {
  17. isPub: {
  18. type: Number,
  19. default: 0
  20. }
  21. },
  22. data() {
  23. return {
  24. defaultProps: {
  25. children: 'categoryList',
  26. label: 'name',
  27. value: 'code'
  28. },
  29. dialogVisible: false,
  30. value: [],
  31. treeData: [],
  32. data: []
  33. };
  34. },
  35. computed: {
  36. ...mapState(["categoryGraph"]),
  37. },
  38. mounted() {
  39. this.init()
  40. },
  41. watch: {
  42. categoryGraph: {
  43. handler: function(v) {
  44. this.treeData = v;
  45. },
  46. immediate: true,
  47. deep: true
  48. }
  49. },
  50. methods: {
  51. init() {
  52. // queryCategoryGraph({ switch: true }).then(res => {
  53. // this.treeData = res.content;
  54. // })
  55. },
  56. showDialog(data) {
  57. this.dialogVisible = true;
  58. this.data = data;
  59. },
  60. // 确认修改
  61. confirm() {
  62. if (!this.value.length || !this.data.length) {
  63. return
  64. }
  65. const categoryId = this.value[this.value.length - 1]
  66. const pa = {
  67. content: [],
  68. projection: ['categoryId']
  69. }
  70. pa.content = this.data.map(t => {
  71. return {
  72. id: t.id,
  73. graphId: t.graphId,
  74. categoryId: categoryId
  75. }
  76. })
  77. if (this.isPub) { // 已发布
  78. updatePubGraph(pa).then(res => {
  79. this.updateCall(res)
  80. })
  81. } else { // 未发布
  82. updateDraftsGraph(pa).then(res => {
  83. this.updateCall(res)
  84. })
  85. }
  86. },
  87. // 更新成功回调
  88. updateCall(res) {
  89. this.value = [];
  90. if (res.result == "success") {
  91. this.dialogVisible = false;
  92. this.$message.success('移动成功');
  93. this.$emit("moveSuc")
  94. } else {
  95. this.$message(res.message)
  96. }
  97. }
  98. }
  99. };
  100. </script>
  101. <style lang="less">
  102. .moveDialog {
  103. /deep/ .el-dialog__header {
  104. border-bottom: 1px solid #f0f1f2ff;
  105. }
  106. /deep/ .el-dialog__body {
  107. padding: 16px 60px;
  108. }
  109. .el-dialog__footer {
  110. padding: 14px 20px 20px;
  111. .el-button {
  112. padding: 0;
  113. width: 80px;
  114. height: 32px;
  115. text-align: center;
  116. line-height: 1;
  117. }
  118. }
  119. }
  120. </style>