feat: product and service main page UI
This commit is contained in:
parent
7bac214529
commit
eb643fe06f
2 changed files with 176 additions and 0 deletions
73
src/components/04_product-service/ProductCardComponent.vue
Normal file
73
src/components/04_product-service/ProductCardComponent.vue
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
<script setup lang="ts">
|
||||
import AppBox from 'components/app/AppBox.vue';
|
||||
import AllAroundBtn from '../AllAroundBtn.vue';
|
||||
import { dateFormat } from 'src/utils/datetime';
|
||||
|
||||
withDefaults(
|
||||
defineProps<{
|
||||
title?: string;
|
||||
subtitle?: string;
|
||||
color?: string;
|
||||
status?: boolean;
|
||||
date?: Date;
|
||||
}>(),
|
||||
{
|
||||
color: 'var(--brand-2)',
|
||||
},
|
||||
);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="full-width rounded" :style="`border:1px solid ${color}`">
|
||||
<div class="q-pa-md row justify-between items-center">
|
||||
<q-btn
|
||||
round
|
||||
icon="mdi-folder"
|
||||
size="12px"
|
||||
flat
|
||||
:style="`color:${color};background-color:var(--surface-0)`"
|
||||
/>
|
||||
<AllAroundBtn :label="'viewDetail'" :color="color" />
|
||||
</div>
|
||||
<div class="q-px-md">
|
||||
<div class="text-subtitle1 text-bold">{{ title }}</div>
|
||||
<div class="text-subtitle3">{{ subtitle }}</div>
|
||||
</div>
|
||||
<div class="q-pa-md q-mt-lg sub-card">
|
||||
<div>
|
||||
<div class="row justify-between q-mb-sm">
|
||||
<div class="app-text-muted">{{ $t('status') }}</div>
|
||||
|
||||
<q-badge
|
||||
v-if="status"
|
||||
class="q-px-md q-py-xs rounded"
|
||||
style="background-color: var(--teal-0); color: var(--teal-6)"
|
||||
>
|
||||
{{ $t('statusACTIVE') }}
|
||||
</q-badge>
|
||||
<q-badge
|
||||
v-else
|
||||
text-color="orange"
|
||||
class="q-px-md q-py-xs rounded"
|
||||
style="background-color: var(--red-1); color: var(--orange-4)"
|
||||
>
|
||||
{{ $t('statusINACTIVE') }}
|
||||
</q-badge>
|
||||
</div>
|
||||
<div class="row justify-between">
|
||||
<div class="app-text-muted">{{ 'วันที่ล่าสุด' }}</div>
|
||||
<div>{{ dateFormat(date) }}</div>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.sub-card {
|
||||
background-color: var(--surface-0);
|
||||
border-radius: 0 0 var(--radius-2) var(--radius-2);
|
||||
font-size: 16px;
|
||||
}
|
||||
</style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue