You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
1.2 KiB
22 lines
1.2 KiB
<view>
|
|
<van-tabs type="card">
|
|
<van-tab title="二十四小时"></van-tab>
|
|
<van-tab title="最近七天"></van-tab>
|
|
<van-tab title="最近三十天"></van-tab>
|
|
<van-tab title="自定义">
|
|
<van-cell title="选择开始时间" is-link value="{{ start }}" bind:click="onDisplay" />
|
|
<van-cell title="选择结束时间" is-link value="{{ end }}" bind:click="onDisplay1" />
|
|
<van-popup show="{{ show1 }}" position="bottom">
|
|
<van-datetime-picker type="datetime" value="{{startTime}}" bind:input="onInput" bind:confirm="onConfirm"
|
|
bind:cancel="onCancel" />
|
|
</van-popup>
|
|
<van-popup show="{{ show2 }}" position="bottom">
|
|
<van-datetime-picker type="datetime" value="{{endTime}}" bind:input="onInput1" bind:confirm="onConfirm1"
|
|
bind:cancel="onCancel1" />
|
|
</van-popup>
|
|
<van-dialog use-slot title="注意" show="{{ showDialog }}" bind:confirm="cdialog">
|
|
<view class="tc-d-t">结束时间不能小于开始时间</view>
|
|
</van-dialog>
|
|
</van-tab>
|
|
</van-tabs>
|
|
</view> |