|
@@ -10,13 +10,37 @@
|
|
|
|
|
|
<script>
|
|
|
import { recoveryGraph, queryDraftsGraph } from "@/api/home"
|
|
|
+import { mapState } from "vuex"
|
|
|
+function changeArr(list, map) {
|
|
|
+ for (let i = 0; i < list.length; i++) {
|
|
|
+ const ele = list[i];
|
|
|
+ if (ele.categoryList) {
|
|
|
+ changeArr(ele.categoryList, map);
|
|
|
+ }
|
|
|
+ map[ele.code] = ele;
|
|
|
+ delete map[ele.code].categoryList
|
|
|
+ }
|
|
|
+}
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
|
dialogVisible: false,
|
|
|
- data: {}
|
|
|
+ data: {},
|
|
|
+ codeToName: {}
|
|
|
};
|
|
|
},
|
|
|
+ computed: {
|
|
|
+ ...mapState(["categoryGraph"])
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ categoryGraph: {
|
|
|
+ handler: function(v) {
|
|
|
+ changeArr(v, this.codeToName)
|
|
|
+ },
|
|
|
+ immediate: true,
|
|
|
+ deep: true
|
|
|
+ }
|
|
|
+ },
|
|
|
methods: {
|
|
|
showDialog(data) {
|
|
|
this.data = data;
|
|
@@ -50,10 +74,18 @@ export default {
|
|
|
if (res.result == "success") {
|
|
|
this.dialogVisible = false;
|
|
|
this.$emit("recoverSuc");
|
|
|
- this.$message.success('恢复成功');
|
|
|
+ this.$message.success(`已恢复至${this.getCategoryName(this.data.categoryId) || ''}`);
|
|
|
} else {
|
|
|
this.$message(res.message)
|
|
|
}
|
|
|
+ },
|
|
|
+ // 获取恢复的图的分类
|
|
|
+ getCategoryName(id) {
|
|
|
+ if (!this.codeToName[id].parentId) {
|
|
|
+ return this.codeToName[id].name
|
|
|
+ } else {
|
|
|
+ return this.getCategoryName(this.codeToName[id].parentId) + '-' + this.codeToName[id].name
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
};
|