1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| <div>
| <div class="row">
| <div class="col-md-2">
| <div class="margin-xs-r bg-white treeview">
| <ul class="list-group text-center">
| <li class="list-group-item node-orgTree " v-for="(item,index) in commonReportInfo.reportCustoms"
| :class="{'vc-node-selected':commonReportInfo.switchValue==item.customId}" @click="swatch(item)">
| {{item.title}}
| </li>
| </ul>
| </div>
| </div>
| <div class="col-md-10 ">
| <div>
| <vc:create path="property/commonReportTable"></vc:create>
| </div>
| </div>
| </div>
| </div>
|
|