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