微信小程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

SubjectTreeChooserNodeItem.wxml 662 B

5 天前
123456789101112131415
  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>