add mockup funct accept requirement
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
<div
|
||||
style="height: 40px; width: 40px; display: flex; align-items: center; justify-content: center;"
|
||||
class="rounded-lg pa-2 mr-2 bg-grey-lighten-5 pointer"
|
||||
v-show="selected.status === 'Call'"
|
||||
>
|
||||
<iconify-icon
|
||||
class="text-grey"
|
||||
@@ -47,13 +48,13 @@
|
||||
</v-row>
|
||||
<v-row no-gutters>
|
||||
<v-col cols="4">
|
||||
<p class="font-weight-medium">Tanggal Lahir dan Umur</p>
|
||||
<p class="font-weight-medium">{{ $t('message.dobage') }}</p>
|
||||
</v-col>
|
||||
<v-col cols="4" class="text-end">
|
||||
<p class="font-weight-medium" style="color: slategray;">10-11-1999</p>
|
||||
<p class="font-weight-medium" style="color: slategray;">{{ selected.dob }}</p>
|
||||
</v-col>
|
||||
<v-col cols="4" class="text-end">
|
||||
<p class="font-weight-medium" style="color: slategray;">24 Tahun 8 Bulan 21 Hari</p>
|
||||
<p class="font-weight-medium" style="color: slategray;">{{ selected.age }}</p>
|
||||
</v-col>
|
||||
</v-row>
|
||||
</div>
|
||||
|
||||
@@ -23,7 +23,8 @@ var CustomMessages = {
|
||||
requirement: "REQUIREMENT",
|
||||
action: "ACTION"
|
||||
},
|
||||
examination: "EXAMINATION"
|
||||
examination: "EXAMINATION",
|
||||
dobage: "Date of Birth and Age",
|
||||
},
|
||||
},
|
||||
id: {
|
||||
@@ -50,7 +51,8 @@ var CustomMessages = {
|
||||
requirement: "PRASYARAT",
|
||||
action: "AKSI"
|
||||
},
|
||||
examination: "PEMERIKSAAN"
|
||||
examination: "PEMERIKSAAN",
|
||||
dobage: "Tanggal Lahir dan Umur",
|
||||
},
|
||||
},
|
||||
};
|
||||
@@ -9,6 +9,9 @@ const store = {
|
||||
noreg: "055000037LA",
|
||||
kelpelanggan: "PASIEN MANDIRI",
|
||||
nama: "Tn. Alpha",
|
||||
age: "23 tahun 11 bulan 10 hari",
|
||||
dob: "10/10/2000",
|
||||
pid: "-",
|
||||
status: "New",
|
||||
doneCall: "N",
|
||||
},
|
||||
@@ -17,6 +20,9 @@ const store = {
|
||||
noreg: "055000036LA",
|
||||
kelpelanggan: "PASIEN KLINISI",
|
||||
nama: "Tn. Beta",
|
||||
age: "27 tahun 2 bulan 12 hari",
|
||||
dob: "08/06/1997",
|
||||
pid: "-",
|
||||
status: "New",
|
||||
doneCall: "N",
|
||||
},
|
||||
@@ -25,6 +31,9 @@ const store = {
|
||||
noreg: "055000035LA",
|
||||
kelpelanggan: "PASIEN KLINISI",
|
||||
nama: "Tn. Gamma",
|
||||
age: "25 tahun 1 bulan 23 hari",
|
||||
dob: "27/06/1999",
|
||||
pid: "-",
|
||||
status: "New",
|
||||
doneCall: "N",
|
||||
},
|
||||
@@ -34,6 +43,9 @@ const store = {
|
||||
noreg: "-",
|
||||
kelpelanggan: "-",
|
||||
nama: "-",
|
||||
age: "-",
|
||||
dob: "-",
|
||||
pid: "-",
|
||||
status: "-",
|
||||
},
|
||||
details: {
|
||||
|
||||
Reference in New Issue
Block a user