| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <view class="head" />
- <Yl_ListBox id='ListBox' pullDown='{{false}}'>
- <view class="container">
- <calendar id="calendar" bindload="handleCalendarLoad" binddatechange="handleCalendarDateChange" bindrangechange="handleCalendarRangeChange" bindviewchange="handleCalendarPanelViewChange" _position="absolute" _top="0">
- <view class="history">
- <view style="margin: 10rpx 0;">
- <Yl_Headline title='{{querysubhr?"下属签到记录":"签到记录"}}' type='switch' switchLabel='查看下属签到记录' switch='{{querysubhr}}' bind:callBack='onChange' />
- </view>
- <view class="item" wx:for="{{list}}" wx:key="rowindex">
- <view class="time">{{item.signintime}}</view>
- <view class="location">
- <text class="iconfont icon-a-wodemendianxinxidizhi" />{{item.address}}
- </view>
- <view class="exp">说明:{{item.remarks|| ' --'}}</view>
- <view class="user">
- <view class="portrait">
- <image wx:if="{{item.headpic}}" src="{{item.headpic}}" mode="aspectFill" />
- <view wx:else class="text">
- {{item.name[0]}}
- </view>
- </view>
- <view class="main">
- <view class="name">{{item.name}}</view>
- <view class="text">{{item.depname}} {{item.position}}</view>
- </view>
- </view>
- </view>
- <My_empty wx:if="{{list.length==0}}" />
- <view style="height: 40rpx;" />
- </view>
- </calendar>
- </view>
- </Yl_ListBox>
- <Yl_FloatingButton useSlot zIndex='99999999999' bindtap="toSignIn">
- <view class="float-but">
- 签到
- </view>
- </Yl_FloatingButton>
|