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.
|
- <!--component/SubjectTreeChooserNodeItem/SubjectTreeChooserNodeItem.wxml-->
- <van-popup show="{{popupVisible}}" position="bottom" close-on-click-overlay bind:close="onClose">
- <!-- <van-search
- v-model="searchValue"
- placeholder="按科目编码/名称筛选"
- @input="onSearch"
- /> -->
- <van-tabs animated sticky id="tabs" bind:change="onTabChanged">
- <van-tab title="{{item.subjectName}}" name="{{item.subjectId}}" wx:for="{{subjects}}" wx:key="index">
- <view style="height: 480px;">
- <childrenPage subjects="{{item.children}}"></childrenPage>
- </view>
- </van-tab>
- </van-tabs>
- </van-popup>
|