1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <view>
- <view class="container">
- <view class="view-page ">
- <swiper class="swiper" indicator-dots="true" indicator-color="#B5B5B5" indicator-active-color="#6D6D6D"
- autoplay="true" interval="5000" duration="{{duration}}">
- <block wx:for="{{arr}}" wx:key="index">
- <swiper-item>
- <image src="{{arr[index].wb_url}}" class="slide-image" bindtap="BhrefPm" data-index="{{arr[index].wb_href}}"
- data-type="{{arr[index].wb_href_type}}" mode="widthFix" />
- </swiper-item>
- </block>
- </swiper>
- <view class = "box_logo">
- <image src="https://api.zhumi.tech/MiniProgram/image/index_logo.png" class="index_logo" />
- <view class="colum-hot">
- <view class="hot-box-temp2"></view>
- <view class="hot-box">
- <image src="https://api.zhumi.tech/MiniProgram/image/index_m_left.png" class = "index_middle_l"></image>
- </view>
- <view class="hot-box-temp"></view>
- <view class="hot-box">
- <image src="https://api.zhumi.tech/MiniProgram/image/index_m_right.png" class = "index_middle_l"></image>
- </view>
- </view>
- <view class = "cont">
- <view class="tips-box">
- <view class="tips-cont">双11XXXXXXXXXXXXXX</view>
- </view>
- <image src = "https://api.zhumi.tech/MiniProgram/image/recommend.png" class="lang-img"/>
- <image src = "https://api.zhumi.tech/MiniProgram/image/hd_banner.jpg" class="hd_banner"/>
- <view class="hot-title">优秀师资</view>
- <scroll-view scroll-x="true" style="height: 550rpx;">
- <view class="uploadWrap">
- <block wx:for="{{mktarr}}" wx:key="index">
- <view class="upload_Item" >
- <image class="upload_Item_img" src="{{mktarr[index].mi_mkturl}}"></image>
- <view class = "teache_con">
- <view class = "teahcer_name_box">
- <view class = "teacher_name">{{mktarr[index].mi_mktname}}</view>
- <view class = "teacher_name_con">注释文字</view>
- </view>
- <view class = "t_conntext">注释文字第二行</view>
- <view class = "t_conntext">注释文字第二行</view>
- </view>
- </view>
- <view class="viewright" wx:if="{{index == mktarr.length -1}}"></view>
- </block>
- </view>
- </scroll-view>
- <view class="hot-title">查找校区</view>
- <view class="colum-hot-temp"></view>
- <view class="campus-box">
- <image src="{{mktImgage}}" class = "campus-image"></image>
- </view>
- <view class="campus_Item" >
- <view class="mkt-img-box">
- <scroll-view scroll-x="true">
- <view class="mktWrap">
- <block wx:for="{{mktList_m}}" wx:key="index">
- <view class="mkt-img">
- <image class="campus_Item_img" src="{{mktList_m[index]}}" bindtap="mktImageChange" data-path='{{mktList_l[index]}}'></image>
- </view>
- <view class="viewright-mkt" wx:if="{{index == mktList_m.length -1}}"></view>
- </block>
- </view>
- </scroll-view>
- </view>
- </view>
- <view class = "mkt-desc-box">
- <view class="hot-title">米粒编程(大都汇校区)</view>
- <view class="hot-mkt">电话:XXXXXXXXX-XXXXXX</view>
- <view class="hot-mkt">地址: 辽宁省沈阳市铁西区XXXXXXX</view>
- </view>
- <view class = "endbottomm" ></view>
- </view>
- </view>
- <tabbar _tabBarInd="{{0}}"></tabbar>
- </view>
- </view>
- </view>
|