signInList.vue
1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<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>