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.
95 lines
3.9 KiB
95 lines
3.9 KiB
2 years ago
|
<!--miniprogram/pages/find/find.wxml-->
|
||
|
<view class="container3">
|
||
|
<view class="container2">
|
||
|
<view class="search">
|
||
|
<view class="search2">
|
||
|
<view class="search-input"><input placeholder="输入关键字搜索" bindinput="inputchange" value="{{inputcon}}"/></view>
|
||
|
<view class="search-submit">
|
||
|
<image src="../../images/ss.png" bindtap="search"></image>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="top">
|
||
|
<swiper indicator-dots="true" interval="5000" autoplay="true" indicator-active-color="white">
|
||
|
<block wx:for="{{swiperImg}}" wx:key="index">
|
||
|
<swiper-item bindtap="sliderto" data-url="{{item.url}}">
|
||
|
<image src="{{item.src}}" />
|
||
|
</swiper-item>
|
||
|
</block>
|
||
|
</swiper>
|
||
|
</view>
|
||
|
<view class="main">
|
||
|
<view class="main-top">
|
||
|
<view class="main-top-left">
|
||
|
<view class="main-top-left-img">
|
||
|
<image src="../../images/ch-med.png"></image>
|
||
|
</view>
|
||
|
<view class="main-top-left-text">中医内容</view>
|
||
|
</view>
|
||
|
<view class="main-top-right">
|
||
|
<view class="main-top-right-text" ><text bindtap="gotomore1">查看更多</text></view>
|
||
|
<view class="main-top-right-img" bindtap="gotomore1">
|
||
|
<image src="../../images/more.png"></image>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="main-center">
|
||
|
<view class='slide'>
|
||
|
<swiper class='picker' circular previous-margin='80rpx' next-margin="80rpx" bindchange="bindchange1"
|
||
|
autoplay='true'>
|
||
|
<swiper-item wx:for="{{bannerImg1}}" wx:key="item.index" wx:if="{{item.isfirst=='true'}}"
|
||
|
bindtap="sliderto"
|
||
|
data-url="{{item.url}}">
|
||
|
<view class='picker-one'>
|
||
|
<image src='{{item.src}}' class='{{showindex1==item.index?"imgs":"imgs1"}}' bindtap="gotocompete"></image>
|
||
|
<view class="picker-two">
|
||
|
<view class="picker-two-title">{{item.title}}</view>
|
||
|
<view class="picker-two-con">
|
||
|
<view class="picker-two-icon"><image src="../../images/note.png"></image></view>
|
||
|
<view class="picker-two-time">{{item.note}}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</swiper-item>
|
||
|
</swiper>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="main">
|
||
|
<view class="main-top">
|
||
|
<view class="main-top-left">
|
||
|
<view class="main-top-left-img">
|
||
|
<image src="../../images/school.png"></image>
|
||
|
</view>
|
||
|
<view class="main-top-left-text">校园生活</view>
|
||
|
</view>
|
||
|
<view class="main-top-right">
|
||
|
<view class="main-top-right-text"><text bindtap="gotomore2">查看更多</text></view>
|
||
|
<view class="main-top-right-img" bindtap="gotomore2">
|
||
|
<image src="../../images/more.png"></image>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="main-center">
|
||
|
<view class='slide'>
|
||
|
<swiper class='picker' circular previous-margin='80rpx' next-margin="80rpx" bindchange="bindchange2"
|
||
|
autoplay='true'>
|
||
|
<swiper-item wx:for="{{bannerImg1}}" wx:key="item.index" id="{{item.index}}" wx:if="{{item.isfirst=='false'}}" bindtap="sliderto"
|
||
|
data-url="{{item.url}}">
|
||
|
<view class='picker-one'>
|
||
|
<image src='{{item.src}}' class='{{showindex2==item.index?"imgs":"imgs1"}}'></image>
|
||
|
<view class="picker-two">
|
||
|
<view class="picker-two-title">{{item.title}}</view>
|
||
|
<view class="picker-two-con">
|
||
|
<view class="picker-two-icon"><image src="../../images/note.png"></image></view>
|
||
|
<view class="picker-two-time">{{item.note}}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</swiper-item>
|
||
|
</swiper>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|