api
This commit is contained in:
parent
14abaf35e2
commit
da31120a9d
3 changed files with 40 additions and 5 deletions
|
|
@ -16,10 +16,15 @@ import type { DateCards } from "@/interface/index/Main";
|
|||
|
||||
const $q = useQuasar();
|
||||
|
||||
const urlAdmin = import.meta.env.VITE_URL_ADMIN ?? "";
|
||||
const urlUser = import.meta.env.VITE_URL_USER ?? "";
|
||||
const urlMgt = import.meta.env.VITE_URL_MGT ?? "";
|
||||
const urlCheckin = import.meta.env.VITE_URL_CHECKIN ?? "";
|
||||
const urlAdmin = config.API.API_URL_ADMIN ?? "";
|
||||
const urlUser = config.API.API_URL_USER ?? "";
|
||||
const urlMgt = config.API.API_URL_MGT ?? "";
|
||||
const urlCheckin = config.API.API_URL_CHECKIN ?? "";
|
||||
|
||||
console.log(config.API.API_URL_ADMIN);
|
||||
console.log(config.API.API_URL_USER);
|
||||
console.log(config.API.API_URL_MGT);
|
||||
console.log(config.API.API_URL_CHECKIN);
|
||||
|
||||
const cards = ref<DateCards[]>([
|
||||
{
|
||||
|
|
@ -207,7 +212,7 @@ onMounted(async () => {
|
|||
class="q-mt-xl"
|
||||
:class="!$q.screen.gt.md ? 'row justify-center' : ''"
|
||||
>
|
||||
<div class="q-col-gutter-md" :class="$q.screen.gt.md ? 'row' : ''">
|
||||
<div class="q-col-gutter-lg" :class="$q.screen.gt.md ? 'row' : ''">
|
||||
<div class="col" v-for="(card, index) in cards" :key="index">
|
||||
<q-card
|
||||
:style="!$q.screen.gt.md ? 'width: 300px' : ''"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue