保誠-保戶業務員媒合平台
HelenHuang
2022-01-22 4df7821ba212d4c62069e551194512519f325ec3
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
<template>
    <div class="remind-card">
        <div class="remind-card-header">
            <div class="mdTxt text--black">即將約訪排程</div>
            <div class="smTxt_bold text--primary sub-title cursor--pointer" @click="toAgendaPage">查看全部</div>
        </div>
 
        <div class="remind-container">
            <div class="remind-date mr-10">
              <div class="mb-3 smTxt bgc-primary-red date-year">
                <div class="mb-3 mt-2">2021</div>
                </div>
              <div class="p mt-5">
                <div>12/25</div>
              </div>
            </div>
 
            <div class="remind-content-txt">
                <div class="mb-3">09:00</div>
                <div>約訪林志零</div>
            </div>
 
        </div>
    </div>
</template>
 
<script lang="ts">
import { Vue, Component, Prop, Emit, Action, State, namespace } from 'nuxt-property-decorator';
 
@Component
export default class ConsultantAppointmentRemind extends Vue {
 
  toAgendaPage(){
    this.$router.push('/appointmentAgenda')
  }
    //////////////////////////////////////////////////////////////////////
}
</script>
<style lang="scss" scoped>
.remind-card{
    display: flex;
    flex-direction:column;
    justify-content: center;
    border: 1px solid #CCCCCC;
    height: 131px;
    padding: 10px 20px;
    background-color: #fff;
    .remind-card-header{
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        .sub-title{
            border-bottom: 1px solid $PRIMARY_RED;
        }
    }
}
 
</style>