Firs Commit

This commit is contained in:
2025-03-21 09:37:29 +07:00
commit b5f22f157e
98 changed files with 16210 additions and 0 deletions
@@ -0,0 +1,62 @@
<template>
<v-card elevation="10" class="revenue-products">
<v-card-item class="pb-4">
<v-row class="mt-3">
<v-col cols="12">
<v-row>
<v-col cols="6">
<v-text-field disabled label="PPA" variant="outlined" density="compact" type="text" hide-details color="primary"></v-text-field>
</v-col>
<v-col cols="6">
<v-text-field disabled label="Nama PPA" variant="outlined" density="compact" type="text" hide-details color="primary"></v-text-field>
</v-col>
</v-row>
</v-col>
</v-row>
<div class="d-flex ga-3 align-center justify-space-between mt-3">
<v-card-title class="text-h5">Hasil Asesmen Pasien Dan Pemberian Pelayanan</v-card-title>
</div>
<v-row class="mt-3">
<v-col cols="12">
<v-row>
<v-col cols="6">
<v-textarea label="(S)" variant="outlined" density="compact" type="text" hide-details color="primary"></v-textarea>
</v-col>
<v-col cols="6">
<v-textarea label="(0)" variant="outlined" density="compact" type="text" hide-details color="primary"></v-textarea>
</v-col>
</v-row>
</v-col>
</v-row>
<v-row class="mt-3">
<v-col cols="12">
<v-row>
<v-col cols="6">
<v-textarea label="(A)" variant="outlined" density="compact" type="text" hide-details color="primary"></v-textarea>
</v-col>
<v-col cols="6">
<v-textarea label="(P)" variant="outlined" density="compact" type="text" hide-details color="primary"></v-textarea>
</v-col>
</v-row>
</v-col>
</v-row>
<v-row class="mt-3">
<v-col cols="12">
<v-row>
<v-col cols="12">
<v-textarea label="Review" placeholder="Review & Verifikasi DPJP" variant="outlined" density="compact" type="text" hide-details color="primary"></v-textarea>
</v-col>
</v-row>
</v-col>
</v-row>
<v-row class="mt-12">
<v-col cols="6" class="pt-0">
<v-btn to="/" color="primary" size="large" block flat>Simpan</v-btn>
</v-col>
<v-col cols="6" class="pt-0">
<v-btn to="/dokter/rawatjalan/cppt" color="light" size="large" block flat>Cancel</v-btn>
</v-col>
</v-row>
</v-card-item>
</v-card>
</template>
@@ -0,0 +1,35 @@
<script setup lang="ts">
import { DailyActivitiesData } from '@/data/dashboard/dashboardData';
import { Icon } from '@iconify/vue';
</script>
<template>
<v-card elevation="10">
<v-card-item>
<v-card-title class="text-h5">History CPPT</v-card-title>
<div class="daily-activities mt-8 px-3">
<div v-for="list in DailyActivitiesData" :key="list.title">
<v-row class="d-flex mb-1">
<v-col cols="4" lg="3" md="auto" sm="auto" class="px-0 pt-0 pb-0 d-flex align-start">
<p class="text-body-1 text-textSecondary text-no-wrap">{{ list.title }}</p>
</v-col>
<v-col cols="1" sm="1" class="px-0 text-center pt-0 pb-0 mt-1">
<Icon icon="tabler:circle-filled" size="13" :class="'text-' + list.textcolor" />
<div v-if="list.line" class="line mx-auto bg-grey100"></div>
</v-col>
<v-col cols="7" sm="8" class="pt-0 pb-0">
<h6 v-if="list.boldtext" class="text-body-1 text-textPrimary">{{ list.subtitle }}</h6>
<p v-else class="text-body-1 text-textPrimary">{{ list.subtitle }}</p>
<div class="mt-n1">
<NuxtLink :to="list.url" class="text-body-1 text-primary text-decoration-none" v-if="list.link">{{
list.link
}}</NuxtLink>
</div>
</v-col>
</v-row>
</div>
</div>
</v-card-item>
</v-card>
</template>