微信小程序
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
662 B

  1. <!--component/SubjectTreeChooserNodeItem/SubjectTreeChooserNodeItem.wxml-->
  2. <van-popup show="{{popupVisible}}" position="bottom" close-on-click-overlay bind:close="onClose">
  3. <!-- <van-search
  4. v-model="searchValue"
  5. placeholder="按科目编码/名称筛选"
  6. @input="onSearch"
  7. /> -->
  8. <van-tabs animated sticky id="tabs" bind:change="onTabChanged">
  9. <van-tab title="{{item.subjectName}}" name="{{item.subjectId}}" wx:for="{{subjects}}" wx:key="index">
  10. <view style="height: 480px;">
  11. <childrenPage subjects="{{item.children}}"></childrenPage>
  12. </view>
  13. </van-tab>
  14. </van-tabs>
  15. </van-popup>