市北人才赋能平台 --小程序端
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.
 

43 lines
1.1 KiB

<!--index.wxml-->
<view class="container">
<e-swiper bind:tapSwiperItem="tapSwiperItem" images="{{banners}}"/>
<e-focus bind:tapFocusItem="tapFocusItem" items="{{hots}}"/>
<block wx:for="{{list}}" wx:key="{{index}}">
<e-cell
index="{{index}}"
readed="{{item.readed}}"
image="{{item.image}}"
cId="{{item.id}}"
title="{{item.title}}"
time="{{item.time}}"
showTop="{{item.showTop}}"
type="{{item.type}}"
bind:clickListItem="clickListItem"/>
</block>
<e-empty loading="{{loading}}"/>
<!-- <van-popup
show="{{show}}"
closeable
round="{{false}}"
overlay="{{false}}"
close-icon="close"
position="bottom"
duration="0"
custom-style="height: 80%"
bind:close="onClose"
> -->
<van-popup
show="{{ show }}"
bind:close="onClose"
closeable
close-icon="close"
custom-style="height: 80%;width:80%"
duration="3"
>
<!-- <view class="content" bindtap="jump" style="background: url({{url}}) center no-repeat;background-size: 100% 100%;">
</view> -->
<image class="content" src="{{url}}" bindtap="jump"></image>
</van-popup>
</view>