-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feat/recruitment' into dev
- Loading branch information
Showing
11 changed files
with
248 additions
and
310 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,3 +22,5 @@ dist-ssr | |
*.njsproj | ||
*.sln | ||
*.sw? | ||
#lock-package | ||
pnpm-lock.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
<script setup lang="ts"> | ||
import { Card } from "@/components/ui/card"; | ||
import { defineProps } from "vue"; | ||
import { Icon } from "@iconify/vue"; | ||
type cardMessage={ | ||
label:string, | ||
number:number, | ||
} | ||
const props = defineProps< | ||
{ quickShowItem : cardMessage,} | ||
>() | ||
</script> | ||
<template> | ||
<Card class="card-message-show" > | ||
<div class="card-message-show-content"> | ||
<div class="card-message-show-content-left"> | ||
<div class="message" >{{ quickShowItem.label }}</div> | ||
<div class="number">{{ quickShowItem.number }}</div> | ||
</div> | ||
<div class="card-message-show-content-right"> | ||
<Icon class="svg" icon="lucide:hand" /> | ||
</div> | ||
</div> | ||
</Card> | ||
</template> | ||
<style lang="scss" scoped > | ||
@use '@/assets/styles'; | ||
.card-message-show{ | ||
width: 100%; | ||
height: 100px; | ||
display: flex; | ||
flex-direction: row; | ||
justify-content:center; | ||
align-items: center; | ||
border: 1px solid var(--border); | ||
border-radius: var(--radius); | ||
padding: 10px; | ||
margin: 10px; | ||
cursor: pointer; | ||
} | ||
.card-message-show-content{ | ||
width: 100%; | ||
height: 100%; | ||
display: flex; | ||
flex-direction: row; | ||
} | ||
.card-message-show-content-left{ | ||
width: 50%; | ||
height: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: flex-start; | ||
padding: 10px; | ||
.message{ | ||
min-width: 50px; | ||
font-size: 1em; | ||
font-weight: 500; | ||
margin-bottom: 10px; | ||
} | ||
.number{ | ||
font-size: 1.2em; | ||
font-weight: 500; | ||
margin-top: 10px; | ||
} | ||
} | ||
.card-message-show-content-right{ | ||
position: relative; | ||
width: 50%; | ||
height: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
.svg{ | ||
position: absolute; | ||
right:20px; | ||
} | ||
} | ||
</style> |
Oops, something went wrong.