mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 22:29:36 +08:00
57 lines
3.1 KiB
Plaintext
57 lines
3.1 KiB
Plaintext
<view class="page">
|
|
<scroll-view style="height:100%;" scroll-y="true">
|
|
<view bindtap="navparkList" class="topList">
|
|
<text style="font-size: 28rpx;">当前园区:{{parkName? parkName:'请先选择园区'}}</text>
|
|
<text style="color: #939393;font-size: 36rpx;"> > </text>
|
|
</view>
|
|
<swiper class='swiper-box' indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}"
|
|
duration="{{duration}}" circular='true' style='height:{{Height}}' wx:if="{{background.length > 0}}">
|
|
<!--<block wx:for="{{background}}" wx:key="*this"> -->
|
|
<block wx:for="{{background}}" wx:key="index">
|
|
<swiper-item>
|
|
<image src="{{IMG_NAME + item.bg}}" mode="widthFix" style="width:100%" bindload='imgHeight'></image>
|
|
</swiper-item>
|
|
</block>
|
|
</swiper>
|
|
<view class="adContainer">
|
|
<ad unit-id="adunit-98d0a96700e15894" bindload="adLoad" binderror="adError" bindclose="adClose" ad-intervals="30"></ad>
|
|
</view>
|
|
<view style="font-size: 12pt;background: white;padding: 20rpx 30rpx;">我的应用</view>
|
|
<view class="fixed">
|
|
<view class="fixedbox" wx:for='{{list}}' wx:key='index' data-path="{{item.path}}" data-name="{{item.name}}"
|
|
bindtap="navapply">
|
|
<image class="{{item.gray? 'gray':''}}" src="{{item.img}}" style="width:90rpx;height:90rpx;"></image>
|
|
<view style="font-size:26rpx;margin-top:18rpx;">{{item.name}}</view>
|
|
</view>
|
|
</view>
|
|
<!-- <view style="background: white;padding: 20rpx 30rpx;">
|
|
<view style="font-size: 13pt;margin-bottom: 30rpx" class="fontW">园区资讯</view>
|
|
<view class="activityList" wx:for='{{homelist}}' wx:key="index" data-uri="{{item.uri}}" bindtap="navDetail">
|
|
<view style="height:360rpx;overflow:hidden;">
|
|
<image src="{{IMG_NAME+item.bannerImg}}" mode='widthFix' style="width:100%;"></image>
|
|
</view>
|
|
<view class="detailbox">
|
|
<view class="titleC" style="width:76%">{{item.bannerName}}</view>
|
|
<view class="detailTextC" style="width:76%">{{item.bannerDesc? item.bannerDesc:""}}</view>
|
|
<view class="btn">查看详情</view>
|
|
</view>
|
|
</view>
|
|
</view> -->
|
|
<view style="background: white;padding: 20rpx 30rpx;" wx:if="{{homelist.length>0}}">
|
|
<view style="font-size: 13pt;margin-bottom: 30rpx" class="fontW">园区资讯</view>
|
|
<view class="activityList" wx:for='{{homelist}}' wx:key="index" data-uri="{{item.uri}}" bindtap="navDetail">
|
|
<view>
|
|
<view class="detailbox" style="display: inline-block;width: 62%;">
|
|
<view class="titleC" style="width:76%">{{item.bannerName}}</view>
|
|
<view class="detailTextC" style="width:76%">{{item.bannerDesc? item.bannerDesc:""}}</view>
|
|
<!-- <view class="btn">查看详情</view> -->
|
|
</view>
|
|
<view style="height:150rpx;width: 30%;overflow:hidden;display: inline-block">
|
|
<image src="{{IMG_NAME+item.bannerImg}}" mode='widthFix' style="width:100%;"></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view style="text-align:center;margin:20rpx 0;">已经没有更多数据啦~</view>
|
|
</scroll-view>
|
|
</view> |