<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>