index.wxml 1.6 KB

12345678910111213141516171819202122232425262728293031323334
  1. <mobile-main frameStyle="{{frameStyle}}" bind:back="back" bind:tabPath="tabPath">
  2. <view slot="info" class="container main">
  3. <view class="one">
  4. <e-tabs tabs="{{tabs}}" bind:tabsChange="tabsChange"></e-tabs>
  5. </view>
  6. <view class="two">
  7. <input type="text" value="{{searchInfo.name}}" placeholder="请输入关键词" />
  8. </view>
  9. <view class="thr">
  10. <scroll-view scroll-y="true" class="scroll-view">
  11. <view class="list-scroll-view">
  12. <view wx:if="{{tabs.active=='a'}}">
  13. a
  14. <!-- <view class="list" wx:for="{{list}}" wx:key="item">
  15. <view class="content">
  16. <view class="name">
  17. <van-icon name="stop" size="10px" />{{item.name}}
  18. </view>
  19. <view class="title">{{item.content}}</view>
  20. <view class="title">{{item.status=='0'?'其他':'原创'}}<text>来源:{{item.source}}</text></view>
  21. </view>
  22. <view class="image" wx:if="{{item.src}}">
  23. <image src="{{item.src}}"></image>
  24. </view>
  25. </view> -->
  26. </view>
  27. <view wx:if="{{tabs.active=='b'}}">
  28. b
  29. </view>
  30. </view>
  31. </scroll-view>
  32. </view>
  33. </view>
  34. </mobile-main>