<view>
  <view class="remindList" a:for="{{remindList}}" data-item="{{item}}" onTap="selectTimes">
    <view class="remindContent">
      <view class="remindText">
        {{item.text}}
      </view>
      <view class="iconfont iconxuanzhong {{aheadTimes.includes(item.time)?'select':''}}">
      </view>
    </view>
  </view>
  <view class="confirm" onTap="save">
    <view>
      完成
    </view>
  </view>
</view>