signInList.vue 1.1 KB
<template>
	<view class="signin_list">
		<mi-calendar :leaveDateList="[`2022-8-2`,`2022-8-4`]" :suspensionDateList="[`2022-08-08`]"
			:normalDateList="[`2022-8-3`]"></mi-calendar>

		<view class="steps">
			<u-steps current="1" direction="column">
				<u-steps-item title="已下单" desc="10:30">
				</u-steps-item>
				<u-steps-item title="已出库" desc="10:35">
				</u-steps-item>
				<u-steps-item title="运输中" desc="11:40"></u-steps-item>
			</u-steps>
		</view>
	</view>
</template>

<script>
	import {
		mapGetters,
		mapState,
		mapActions
	} from 'vuex'
	import listMixin from "@/common/mixins/list-mixin.js";

	import {
		getsignInListApi,
	} from '@/config/api.js';


	export default {
		data() {
			return {

			}
		},

		onLoad(option) {
			this.studentId = option.studentId;

			getsignInListApi({
				studentId: option.studentId,
			})

		},

		methods: {

		}
	}
</script>

<style lang="scss" scoped>
	.signin_list {

		.steps {
			font-size: 28rpx;
			line-height: 36rpx;
			color: #202131;
		}

		.steps /deep/ .u-text__value {
			font-size: 28rpx;
		}
	}
</style>