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
<template>
<div>
<div @click="more" class="remind-top-right">更多></div>
</div>
</template>
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
/**
* @Description 日程提醒
* @Author JiangTao
* @Date 2021-11-10 下午 03:44
*/
@Component({
name: "Schedule",
})
export default class Schedule extends Vue {
more() {
this.$router.push({
path: "/workbench/schedule-reminder/more",
});
}
}
</script>
<style scoped>
.reminder {
width: 98%;
margin-top: 3%;
float: left;
}
.remind-top-time {
font-family: "微软雅黑 Bold", "微软雅黑";
font-size: 115%;
font-weight: bold;
float: left;
}
.remind-top-right {
float: right;
color: #02a7f0;
margin-top: 0.5%;
}
.remind-top {
margin-bottom: 6%;
}
.remind-bottom {
display: flex;
align-items: center;
margin-bottom: 1%;
}
.remind-bottom > div:nth-child(1) {
font-size: 115%;
}
.remind-bottom > div:nth-child(2) {
width: 0.97%;
padding-top: 0.97%;
background-color: #ff932f;
border-radius: 10px;
margin: 0 1%;
}
.remind-bottom > div:nth-child(3) {
font-size: 100%;
}
</style>