You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
625 B
15 lines
625 B
<!--pages/user/profession/index.wxml--> |
|
<view> |
|
<van-collapse value="{{ activeName }}" bind:change="onChange" accordion> |
|
<van-collapse-item title="{{item.industryname}}" name="{{item.id}}" wx:for="{{professionList}}" vx:for-index="itemIndex" wx:key="item"> |
|
<view class="sonItem" |
|
wx:for="{{item.sunList}}" |
|
wx:for-item="sonItem" |
|
wx:for-index="sonItemIndex" |
|
wx:key="sonItemIndex" |
|
bindtap="sonItemClick" |
|
data-id="{{sonItem.industrycode}}" |
|
data-name="{{sonItem.industryname}}">{{sonItem.industryname}}</view> |
|
</van-collapse-item> |
|
</van-collapse> |
|
</view> |