shuziren/job-seeker/miniprogram-2/miniprogram_npm/lin-ui/calendar/components/mounth/index.wxml

12 lines
557 B
Plaintext

<wxs src="./index.wxs" module="computed"></wxs>
<view class="calendar-mounth-container">
<view class="title" wx:if="{{ showMonthTitle }}">
{{ computed.formatMonthTitle(date) }}
</view>
<view class="calendar-day-container">
<view class="calendar-day-wrap" wx:for="{{ days }}" wx:key="index">
<day bind:tap="onClick" data-item="{{ item }}" wx:if="{{ item.type !== 'empty' }}" text="{{ item.text }}" topInfo="{{ item.topInfo }}" bottomInfo="{{ item.bottomInfo }}" type="{{ item.type }}" color=" {{ color }}"/>
</view>
</view>
</view>