基于廊坊系统为基础,国防科技大学系统演示Demo
surprise
2024-04-28 c310c155e3e91e6b285b3fb3519a3ef7c6690d66
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
import { mapState, mapMutations } from 'vuex';
export default {
  computed: {
    // ...mapState('layerTree', [
    //   'treeData',
    // ]),
    ...mapState('user', ['user']),
    ...mapState('mapTools', [
      'hideTools',
      'hidePositionBtn',
      'statusbar',
      'navBar',
      'scaleBarStatus',
    ]),
    ...mapState('mapStatus', ['viewCenter', 'mapStatus']),
  },
  methods: {
    ...mapMutations('layerTree', [
      'setTreeData',
      'addTreeChildren',
      'updataTreeNode',
      'checkTreeNode',
      'removeTreeNode',
    ]),
    ...mapMutations('user', ['changeUserData']),
    ...mapMutations('mapTools', [
      'changeScaleBarVisible',
      'changeNavBarVisible',
      'changeMapToolsVisible',
    ]),
    ...mapMutations('mapStatus', ['setView', 'changeMapStatus']),
  },
};