<!--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>
|