Sanakey
2020-12-07 d345326c7647fa2c95816abf86f4d27cdd6abe3b
提交 | 用户 | age
c09e73 1 <!--components/entry-cell/index.wxml-->
S 2 <van-cell title-width="520rpx">
d34532 3   <navigator url="../../pages/detail/detail?from={{from}}" slot="title">
c09e73 4     <view class="van-cell-text no-wrap">{{listItem.title}}</view>
S 5     <view class="van-cell-desc">
6       <van-row class="van-row" gutter="5">
7         <van-col span="6">
8           <icon class="iconfont icon-jisu font-size-12"></icon>
9           <text> 已结束</text>
10         </van-col>
11         <van-col span="12">
12           <icon class="iconfont icon-dengdai font-size-12"></icon>
13           <text> 结束时间 {{listItem.date}}</text>
14         </van-col>
15         <van-col span="6">
16           <icon class="iconfont icon-jiaosequnti font-size-12"></icon>
17           <text> {{listItem.people}} 人</text>
18         </van-col>
19       </van-row>
20     </view>
21   </navigator>
22   <slot></slot>
23 </van-cell>