xiangpei
2025-04-18 7feee0463330ee014b0ac1a6f8e31118bb699f12
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<template>
  <div class="view">
    <OperateC
        :top-level="topLevel"
        :add="addMenu"
        :edit="editMenu"
        :remove="removeMenu"
        :add-show="this.$getButtonAuth('menu:add')"
        :remove-show="this.$getButtonAuth('menu:del:batch')"
    />
    <MenuTable
        :top-level="topLevel"
        :tableData="tableData"
        :edit-show="this.$getButtonAuth('menu:edit')"
        :del-show="this.$getButtonAuth('menu:del')"
        :add-child-show="this.$getButtonAuth('menu:add:child')"
    />
    <MenuDialog></MenuDialog>
 
  </div>
</template>
 
<script>
import MenuDialog from "@/components/dialog/MenuDialog";
import MenuTable from "@/components/table/MenuTable";
import OperateC from "@/components/OperateC";
 
 
import {deleteMenuByIds, getMenus} from "@/api/menu";
export default {
  name: "MenuView",
  components:{MenuTable, OperateC, MenuDialog},
  data() {
    return {
      topLevel: -1
    }
  },
  computed: {
    tableData: {
      get() {
        return this.$store.state.menu.tableData;
      },
      set(value) {
        this.$store.state.menu.tableData = value;
      }
    }
  },
  methods: {
    getMenus() {
      var params = {
        "current": this.$store.state.menu.currentPage,
        "size": this.$store.state.menu.pageSize
      };
      getMenus(params).then((res) => {
        this.$store.state.menu.tableData = res.data.data;
        this.$store.state.menu.total = res.data.total;
      })
    },
    addMenu() {
      var params = {
        dialogFormVisible: true,
        parentId: 0,
        parentName: '主目录',
        dialogTitle: '添加菜单'
      }
      this.$store.commit("menu/openDialogForm",params)
    },
    editMenu() {
      var selected = this.$store.state.menu.multipleSelection;
      if (selected.length < 1) {
        this.$message.warning("你还没有选中数据哦!");
        return;
      }
      if (selected.length > 1) {
        this.$message.warning("一次只能修改一条数据哦!")
        return;
      }
      this.$store.dispatch("menu/editMenu", selected[0]);
    },
    removeMenu() {
      var selected = this.$store.state.menu.multipleSelection;
      if (selected.length < 1) {
        this.$message.warning("请先选择要删除的数据哦!");
        return;
      }
      this.$confirm('确定删除吗?', '提示', {
        confirmButtonText: '确定',
        cancelButtonText: '取消',
        type: 'warning'
      }).then(() => {
        deleteMenuByIds(selected).then((res) => {
          this.$message.success(res.data.msg);
          // 刷新
          var params = {
            "current": this.$store.state.menu.currentPage,
            "size": this.$store.state.menu.pageSize
          };
          getMenus(params).then((res) => {
            this.$store.state.menu.tableData = res.data.data;
            this.$store.state.menu.total = res.data.total;
          })
        })
      }).catch(() => {
        this.$message({
          type: 'info',
          message: '已取消删除'
        });
      });
    },
  },
  mounted() {
    if (this.$getButtonAuth('menu:page')) {
      this.getMenus();
    }
  }
}
</script>
 
<style>
 
</style>