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.
31 lines
823 B
31 lines
823 B
<!--pages/resource/index.wxml-->
|
|
<view class="container">
|
|
<view class="column" wx:for="{{ list }}" bindtap="detail" data-id="{{item.id}}">
|
|
<view class="left">
|
|
<view class="articleImg">
|
|
<image src="{{item.titlePic ? item.titlePic : titlePic}}" mode="widthFix" style="width:100%;"></image>
|
|
</view>
|
|
|
|
<view class="content">
|
|
<view class="title">{{item.title}}</view>
|
|
<view class="r_type">{{item.typeName}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="right"><text class="fa fa-angle-right fa-lg"></text></view>
|
|
</view>
|
|
|
|
|
|
</view>
|
|
<van-popup
|
|
show="{{ show }}"
|
|
bind:close="onClose"
|
|
custom-style="height: 80%;width:80%"
|
|
|
|
>
|
|
<view class="tips">
|
|
<view class="tips-con">
|
|
内容内容内容内容内容内容内容
|
|
</view>
|
|
</view>
|
|
|
|
</van-popup>
|