12345678910111213141516171819202122232425262728293031323334 |
- <view class="all">
- <view class="close">
- <image mode="scaleToFill" catchTap="plusOne" src="../../../image/close.png" />
- </view>
- <view class="flex-box content">
- <scroll-view class="flex-2 left" scroll-y="{{true}}">
- <view style="height: 100%">
- <view class="tree" a:for="{{list}}">
- <view class="{{item.id == activeIndex ? 'active':''}} yi" catchTap="activeTree" data-item="{{item}}">{{item.name}}</view>
- </view>
- </view>
- </scroll-view>
- <scroll-view class="flex-5 right" scroll-y="{{true}}">
- <radio-group class="radio-group" onChange="radioChange">
- <label class="flex-box flex-v-ce items" a:for="{{child_list}}">
- <view class="radio">
- <radio value="{{item}}" checked="{{true}}" a:if="{{item.id==defaultId}}"/>
- <radio value="{{item}}" checked="{{false}}" a:else/>
- {{item.value}}
- </view>
- <view class="radio-right flex-1">
- <view>{{item.name}}</view>
- </view>
- </label>
- </radio-group>
- <view a:if="{{child_list.length==0}}" class="nodata fontColorC">
- <view>
- <image mode="scaleToFill" src="../../../image/noData.png" style="width: 340rpx;height: 340rpx;margin-bottom:20rpx;" />
- </view>
- <text>暂无相关绩效</text>
- </view>
- </scroll-view>
- </view>
- </view>
|