|
@@ -0,0 +1,115 @@
|
|
|
+<template>
|
|
|
+ <view>
|
|
|
+ <u-navbar title="签到记录"></u-navbar>
|
|
|
+ <view class="screen">
|
|
|
+ <view class="date">
|
|
|
+ <view class="text">
|
|
|
+ 2023-02
|
|
|
+ </view>
|
|
|
+ <view class="icon">
|
|
|
+ <u-icon name="arrow-down-fill" color="#999999" size="10"></u-icon>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <u-line color="#999999" direction="col" length="40" margin="auto"/>
|
|
|
+ <view class="course">
|
|
|
+ <view class="text">
|
|
|
+ 全部类型
|
|
|
+ </view>
|
|
|
+ <view class="icon">
|
|
|
+ <u-icon name="arrow-down-fill" color="#999999" size="10"></u-icon>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view class="main">
|
|
|
+ <view class="record">
|
|
|
+ <view class="date">
|
|
|
+ 2023-02-14 13:59:01
|
|
|
+ </view>
|
|
|
+ <view class="classify">
|
|
|
+ 上课签到
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="record">
|
|
|
+ <view class="date">
|
|
|
+ 2023-02-14 13:55:21
|
|
|
+ </view>
|
|
|
+ <view class="classify2">
|
|
|
+ 人脸识别
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ </view>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.screen{
|
|
|
+ background-color: #fff;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ text-align: center;
|
|
|
+ height: 44px;
|
|
|
+ line-height: 44px;
|
|
|
+ .date{
|
|
|
+
|
|
|
+ flex: 1;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ .text{
|
|
|
+ margin-right: 8rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .course{
|
|
|
+ display: flex;
|
|
|
+ flex: 1;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ .text{
|
|
|
+ margin-right: 8rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.main{
|
|
|
+ background-color: #fff;
|
|
|
+ .record{
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding: 24rpx 32rpx;
|
|
|
+ border-top: 1px solid rgba(232, 232, 232, 1);
|
|
|
+ .date{
|
|
|
+ color: rgba(119, 119, 119, 1);
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+ .classify{
|
|
|
+ font-size: 16px;
|
|
|
+ color: rgba(13, 186, 199, 1);
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+ .classify2{
|
|
|
+ color: rgba(129, 97, 255, 1);
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+</style>
|