riku
4 小时以前 cf4787bc8188cd0acc8a42793730b076742f29c1
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
<!--pages/enterprise/result/index.wxml-->
<view class="page">
  <view class="page-header">
    <!-- <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-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}}"
    />
  </view>
  <view class="page-footer"></view>
</view>