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