保誠-保戶業務員媒合平台
Jack
2022-01-18 dc0e7366e96ce773ae1690f6db28e03a684bb45e
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
67
68
69
70
71
72
73
74
75
76
<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-content">
                <div class="remind-first-line mr-10">
                    <div class="txt-margin">2021</div>
                    <div>12/25</div>
                </div>
                <div class="remind-content-txt">
                  <div class="txt-margin">09:00</div>
                  <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;
        }
    }
    .remind-container{
        margin-top: 13px;
        border: 1px solid #CCCCCC;
        height: 61px;
        border-radius: 5px;
        margin-bottom: 20px;
        .remind-content{
            display: flex;
            padding: 13px 10px;
            .remind-first-line{
                display: flex;
                flex-direction: column;
                align-items: center;
                font-weight: bold;
            }
        }
    }
}
.remind-content-txt{
  display: flex;
  flex-direction: column;
}
.txt-margin{
  margin-bottom: 3px;
}
</style>