riku
2023-02-24 110a8520fdf3caacd46750e7b76862df8c7eabd1
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
27
28
29
30
31
32
33
<!--pages/mService/pScheduledetail/pScheduledetail.wxml-->
<view class="page">
  <view class="page__hd">
    <view class="sd-card">
      <view class="sd-card__title">{{thisSchedule.time}}</view>
      <view class="sd-card__content">{{thisSchedule.events[0].name}}</view>
    </view>
 
    <view class="sd-item">
      <view>日程类别</view>
      <view>{{thisSchedule.events[0].type == 1 ? '系统日程' : '环保日程'}}</view>
    </view>
    <view class="sd-item">
      <view>开始时间</view>
      <view class="sd-item__time">{{thisSchedule.time}}</view>
    </view>
    <view class="sd-item">
      <view>结束时间</view>
      <view class="sd-item__time">{{thisSchedule.time}}</view>
    </view>
  </view>
  <view class="page__bd">
    <view class="sd-divider"> <text>* * *</text> 日程提醒 <text>* * *</text> </view>
    <view class="sd-step" wx:for="{{thisSchedule.events[0].steps}}" wx:key="index">
      <text class="sd-step__index">{{item.index}}</text>
      <view class="sd-step__title">{{item.title[0]}}<text>{{item.title[1]}}</text></view>
      <view class="sd-step__content">{{item.content}}</view>
    </view>
  </view>
  <view class="page__ft">
    <view class="submit" bindtap="onSubmit">查看全部日程</view>
  </view>
</view>