保誠-保戶業務員媒合平台
HelenHuang
2022-01-12 d03577bc39bf2be866d4643933515caa4aa71ac8
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
77
78
79
80
81
82
83
84
85
86
87
<template>
    <div>
        <div class="record-page">
            <div class="record">
                <div class="mdTxt">約訪紀錄</div>
                <div class="mdTxt text--underline text--primary"
                @click="$router.push('/appointment/EditAppointmentRecord')">+新增</div>
            </div>
 
            <div class="record-card">
                <div class="record-card-date">
                    <span class="bold">01/10</span>
                    <span class="mt-5 line-space">09:00</span>
                </div>
                <div class="record-card-content">
                    <span>預計提醒客戶約在公司樓下咖啡廳,推薦熊安心醫療險與防疫保單</span>
                </div>
            </div>
        </div>
 
        <section>
            <div class="record-card">
                <div class="record-card-date">
                    <span class="bold">01/08</span>
                    <span class="mt-5 line-space">09:00</span>
                </div>
                <div class="record-card-content">
                    <span>王聰明回信提供電話號碼,去電推薦預約時間</span>
                </div>
            </div>
        </section>
 
        <section class="more-log-action">
                <div class="mdTxt text--primary text--underline">展開看更多</div>
        </section>
    </div>
</template>
 
<script lang="ts">
import { Vue, Component, Prop } from 'nuxt-property-decorator';
 
@Component
export default class AppointmentRecord extends Vue {
 
}
</script>
 
<style lang="scss" scoped>
.record-page{
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 17px;
    margin-bottom: 17px;
    .record{
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }
}
.record-card{
        height: 62px;
        border: 1px solid #707070;
        border-radius: 5px;
        display: flex;
        border-bottom: 1px solid #000;
        .record-card-date{
            display: flex;
            flex-direction: column;
            margin-left: 10px;
            margin-right: 10px;
            margin-top: 10px;
        }
        .record-card-content{
            height: 42px;
            margin-top: 10px;
            margin-right: 10px;
            line-height: 1.2;
        }
    }
.line-space{
    letter-spacing: 1px;
}
.more-log-action{
    margin-top: 30px;
    display: flex;
    justify-content:flex-end;
}
</style>