|  |  |  | 
|---|
|  |  |  | <scroll-view class="query_wrap_scroll" scroll-x> | 
|---|
|  |  |  | <view class="query_wrap"> | 
|---|
|  |  |  | <view data-index="{{ index }}" wx:for="{{ cateList }}" class="item" bindtap="changeShowParams"> | 
|---|
|  |  |  | <view class="name">{{ item.paramName || item.labelName }}</view> | 
|---|
|  |  |  | <view class="name">{{ item.tempParamName || item.labelName }}</view> | 
|---|
|  |  |  | <van-icon name="{{ activeIndex === index ? 'arrow-up' : 'arrow-down' }}" /> | 
|---|
|  |  |  | </view> | 
|---|
|  |  |  | </view> | 
|---|
|  |  |  | 
|---|
|  |  |  | <!--  param --> | 
|---|
|  |  |  | <view wx:if="{{ activeParam && activeParam.length > 0 }}" class="query_param"> | 
|---|
|  |  |  | <view class="list"> | 
|---|
|  |  |  | <view data-index="{{index}}" data-code="{{ item.labelValueCode }}" bindtap="tagClick" wx:for="{{ activeParam }}" class="item {{ cateList[activeIndex].paramIndex === index ? 'active' : '' }}">{{ item.labelValueName }}</view> | 
|---|
|  |  |  | <view data-index="{{index}}" data-code="{{ item.labelValueCode }}" bindtap="tagClick" wx:for="{{ activeParam }}" class="item {{ cateList[activeIndex].tempParamIndex === index ? 'active' : '' }}">{{ item.labelValueName }}</view> | 
|---|
|  |  |  | </view> | 
|---|
|  |  |  | <view class="btns"> | 
|---|
|  |  |  | <view class="btn" bindtap="cancelParam">取消</view> | 
|---|