update style

parent becda557
...@@ -148,29 +148,29 @@ module.exports = configure(function (ctx) { ...@@ -148,29 +148,29 @@ module.exports = configure(function (ctx) {
icons: [ icons: [
{ {
src: 'icons/VAN_Favicon.png', src: 'icons/VAN_Favicon.png',
sizes: '128x128', sizes: '16x16',
type: 'image/png',
},
{
src: 'icons/VAN_Favicon.png',
sizes: '192x192',
type: 'image/png',
},
{
src: 'icons/VAN_Favicon.png',
sizes: '256x256',
type: 'image/png',
},
{
src: 'icons/VAN_Favicon.png',
sizes: '384x384',
type: 'image/png',
},
{
src: 'icons/VAN_Favicon.png',
sizes: '512x512',
type: 'image/png', type: 'image/png',
}, },
// {
// src: 'icons/VAN_Favicon.png',
// sizes: '192x192',
// type: 'image/png',
// },
// {
// src: 'icons/VAN_Favicon.png',
// sizes: '256x256',
// type: 'image/png',
// },
// {
// src: 'icons/VAN_Favicon.png',
// sizes: '384x384',
// type: 'image/png',
// },
// {
// src: 'icons/VAN_Favicon.png',
// sizes: '512x512',
// type: 'image/png',
// },
], ],
}, },
}, },
......
...@@ -35,13 +35,13 @@ export type ArtistInfoType = { ...@@ -35,13 +35,13 @@ export type ArtistInfoType = {
artistName: string | null; artistName: string | null;
birthday: string | null; birthday: string | null;
sex: number; sex: number;
nationality: string;
address: string | null; address: string | null;
status: number; status: number;
field: string | null; nationality: NationalityType;
work: string | null; field: FieldType;
qualification: string | null; work: WorkType;
artistLevel: string | null; qualification: QualificationType;
artistLevel: FieldType;
phoneNumber: string | null; phoneNumber: string | null;
email: string | null; email: string | null;
facebook: string | null; facebook: string | null;
...@@ -93,3 +93,21 @@ export type ArtistOwner = { ...@@ -93,3 +93,21 @@ export type ArtistOwner = {
phoneNumber: number; phoneNumber: number;
status: number; status: number;
}; };
export type SchedulesType = {
id: number;
artistId: number;
bookingId: number;
scheduleTime: string;
description: string;
status: number;
};
export type StoriesType = {
id: number;
artistId: number;
title: string;
content: string;
imageUrl: string;
status: number;
};
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
:to="item.pageUrl || '/'" :to="item.pageUrl || '/'"
exact exact
active-class="bg-primary text-white" active-class="bg-primary text-white"
style="max-height: 40px"
></q-expansion-item> ></q-expansion-item>
</template> </template>
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (ctx.mode.cordova || ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (ctx.mode.cordova || ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>"
/> />
<link <!-- <link
rel="icon" rel="icon"
type="image/png" type="image/png"
sizes="128x128" sizes="128x128"
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
sizes="16x16" sizes="16x16"
href="icons/VAN_Favicon.png" href="icons/VAN_Favicon.png"
/> />
<link rel="icon" type="image/ico" href="favicon.ico" /> <link rel="icon" type="image/ico" href="favicon.ico" /> -->
</head> </head>
<body> <body>
<!-- DO NOT touch the following DIV --> <!-- DO NOT touch the following DIV -->
......
<template> <template>
<q-layout view="hHh Lpr lFf"> <q-layout view="hHh Lpr lFf">
<q-header v-if="showHeader" elevated> <q-header v-if="showHeader" elevated style="height: 50px; display: flex">
<q-toolbar> <q-toolbar>
<q-btn <q-btn
flat flat
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<q-toolbar-title <q-toolbar-title
><q-img ><q-img
src="../assets/logo_van.png" src="../assets/logo_van.png"
style="width: 7.5rem" style="width: 6.5rem"
fit="contain" fit="contain"
:ratio="16 / 9" :ratio="16 / 9"
/></q-toolbar-title> /></q-toolbar-title>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment