riku
3 小时以前 b09c7e7aefd41a62326ea56460092aa0db54c083
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<t-back-top theme="round" text="顶部" scroll-top="{{scrollTop }}"> </t-back-top>
<view class="page">
  <view class="page-header">
    <t-sticky style="z-index: 10000">
      <!-- <view class="subtask-header"> -->
      <t-dropdown-menu t-class-item="custom-dropdown-menu">
        <t-dropdown-item
          options="{{toptask.options}}"
          placement="right"
          value="{{toptask.value}}"
          bindchange="onToptaskChange"
        />
      </t-dropdown-menu>
      <!-- <scene-picker
        style="background-color: white;margin: initial;"
        sceneMode="{{0}}"
        bind:sceneInitValue="initScene"
        bind:scenePickerChange="onScenePickerConfirm"
      >
      </scene-picker> -->
      <!-- </view> -->
    </t-sticky>
    <t-loading
      wx:if="{{pageLoading}}"
      theme="circular"
      size="40rpx"
      text="加载中..."
      loading
      t-class="fy-loading"
      t-class-indicator="fy-loading-indicator"
      t-class-text="fy-loading-text"
    >
    </t-loading>
  </view>
  <view class="page-container">
    <t-calendar
      class="custom-calendar"
      switch-mode="month"
      use-popup="{{false}}"
      minDate="{{minDate}}"
      maxDate="{{maxDate}}"
      format="{{formatCalendarDay}}"
      bind:panel-change="handelMonthChange"
      bind:select="handleSelectDay"
      value="{{thisDate}}"
    />
    <include src="./subtaskitem.wxml" />
  </view>
  <view class="page-footer"> </view>
</view>