riku
2022-08-05 45b2c022e27dda53ee4e5266fbdbdf1ac3aa4c65
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!--pages/promise/promise.wxml-->
<view class="page">
  <!-- <view class="banner-bg"></view> -->
 
  <view class="page__hd">
    <view>
      <view class="title">{{text1}}</view>
      <view class="tag">承诺截止时间:{{deadline}}</view>
    </view>
    <view class="btn" bindtap="goto" data-index="0">{{text3}}</view>
  </view>
  <view class="page__bd">
    <view class="fyui-cell fyui-cell_select title">
      <view class="fyui-cell__bd">历史承诺</view>
      <view class="fyui-cell__ft">查看更多</view>
    </view>
    <view wx:for="{{promise}}" wx:key="index" data-index="index">
      <view class="p-cell fyui-panel">
        <view class="p-title"> 守法 | 承诺</view>
        <view class="p-content">{{item.period}}</view>
        <view class="p-tag">{{item.time}}</view>
        <view class="p-btn" bindtap="goto" data-index="1">去看看</view>
      </view>
    </view>
  </view>
</view>