ludc
2023-05-16 5845950aa395da1a1f56a5fff4c80358cf4b5f7f
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
<template>
  <classifyTrees :crudData="crudTreeData" :crudoption="crudTreeOption" :data="Treedata"
                 :option="Treeoption"
  ></classifyTrees>
</template>
 
<script>
 
export default {
  name: "classifyTree.vue",
  //使用provide传递给子组件
  //父传子有问题,暂时没解决,用provide代替父传子,子传父还是用$emit传递,注意!!!其他组件不能使用同样的类名否则会报错。
  provide() {
    return {
      crudTreeOption: {
        index: true,
        border: true,
        column: [
          {
            label: "模板编号",
            prop: "id"
          },
          {
            label:"模板名称",
            prop:"name"
          },
          {
            label: "模板描述",
            prop:"description"
          },
          {
            label:"版本号",
            prop:"revisionSeq"
          },
          {
            label:"状态",
            prop:"lcStatusText"
          }
        ]
      },
      crudTreeData: this.crudTreeData,
    }
 
  },
  data() {
    return {
      aaa: 1,
      crudTreeData: [
        {
          value: 0,
          column: [
            {
              cash: "测试0"
            }
          ]
        },
        {
          value: 1,
          column: [
            {
              cash: "测试1"
            }
          ]
        }
      ],
      arr : [
        {
          name: 'Alice',
          age: 30,
          children: [
            {
              name: 'Bob',
              age: 5,
              toys: [
                {
                  name: 'ball',
                  color: 'red'
                },
                {
                  name: 'doll',
                  color: 'blue'
                }
              ]
            },
            {
              name: 'Charlie',
              age: 3,
              toys: [
                {
                  name: 'car',
                  color: 'green'
                },
                {
                  name: 'train',
                  color: 'yellow'
                }
              ]
            }
          ]
        },]
    }
  },
  created() {
 
  },
  methods: {
 
  }
}
</script>
 
<style lang="scss">
 
</style>