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
| <template>
| <div>
| <b-card header-tag="h6" class="mb-2" style="max-width: 20%">
| <b-form-input size="small" v-model="searchTreeValue" />
| <p>b-card</p>
| </b-card>
| </div>
| </template>
|
| <script>
| // import { getOrgTree } from '../../server/project.js'
| export default {
| data() {
| return {
| searchTreeValue: '',
| treeList: []
| }
| },
| mounted() {
| this.init()
| },
| methods: {
| /* async init() {
| let res = await getOrgTree({
| orgId: '',
| orgById: ''
| })
| } */
| }
| }
| </script>
|
|