保誠-保戶業務員媒合平台
Tomas
2022-01-12 374004632450ff987b3577a422fdf6a5503220ec
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<template>
  <div class="appointment-client-detail-close-page">
 
      <el-row
        type="flex"
        class="pam-paragraph">
        <UiField label="歸檔方式" :labelSize="20">
          <SingleSelectBtn class="mt-10"
            :singleSelected.sync="appointmentCloseInfo.selectCloseOption"
            :options="closeOptions" />
        </UiField>
      </el-row>
 
      <el-row
        type="flex"
        class="pam-paragraph">
        <UiField label="商品代碼Plan Code" :labelSize="20">
          <input
            class="appointment-client-detail-close__input"
            v-model="appointmentCloseInfo.planCode"
            placeholder="請輸入"
            type="text">
        </UiField>
      </el-row>
 
      <el-row
        type="flex"
        class="pam-paragraph">
        <UiField label="進件時間" :labelSize="20">
          <input
            class="appointment-client-detail-close__input"
            v-model="appointmentCloseInfo.planCode"
            placeholder="TBD: 日期元件"
            type="text">
        </UiField>
      </el-row>
 
      <el-row
        type="flex"
        class="pam-paragraph">
        <UiField label="備註" :labelSize="20">
          <textarea
            v-model="appointmentCloseInfo.archivedDate"
            class="appointment-close__remark"
            placeholder="請輸入"
            name="remark"
            id="remark"
            wrap="off"
            rows="3">
          </textarea>
        </UiField>
      </el-row>
 
      <el-row
        type="flex"
        justify="center"
        class="pam-paragraph">
        <el-button @click="$router.go(-1)">取消</el-button>
        <el-button @click="$router.go(-1)">確認</el-button>
      </el-row>
 
  </div>
</template>
 
<script lang="ts">
 
import { Vue, Component } from 'vue-property-decorator';
 
@Component
export default class AppointmentDetailCloseComponent extends Vue {
 
  appointmentCloseInfo = {
    selectCloseOption: '',
    planCode         : '',
    archivedDate     : '',
    remark           : '',
  };
 
  closeOptions = [
    {
      title:'成交',
      label: 'done',
    },
    {
      title:'未成交',
      label: 'close',
    }
  ];
 
}
</script>
 
<style lang="scss" scoped>
.appointment-close__remark, .appointment-client-detail-close__input {
  border-radius: 5px;
  border   : 1px solid #707070;
  font-size: 20px;
  padding  : 10px 20px;
  width    : 100%;
  &::placeholder {
    color: $MID_GREY;
  }
}
</style>