Compare commits

..

5 Commits

Author SHA1 Message Date
01f949ca03 Zwischenspeicher 2023-05-05 12:11:07 +02:00
b35facc343 Fehler korrigiert 2023-05-03 12:53:54 +02:00
b9299e2cdf Zwischenspeicher 2023-05-03 12:49:56 +02:00
43c2f1e841 Schönheitskorrekturen-Zwischenspeicher 2023-05-02 16:19:44 +02:00
35407b034f Komponenten eingebaut und benutzt (erste Schritte) 2023-05-02 16:07:30 +02:00
16 changed files with 152 additions and 191 deletions

44
app.vue
View File

@ -1,43 +1,11 @@
<template> <template>
<div class="main-container"> <NuxtLayout>
<div class="header"> <NuxtPage />
<table id="header-table"> </NuxtLayout>
<tr>
<th>
<router-link to="/header/help">
Hilfe
</router-link>
</th>
<th>
<router-link to="/header/info">
Info
</router-link>
</th>
<th> Logout </th>
</tr>
</table>
</div>
<div class="sidenav">
<div class="sidenav-content">
<h1 class="menu-heading">
WebAdmin
</h1>
<p>
<router-link to="/">
Home
</router-link>
<router-link to="/adresses/adresses_index">
Adressverwaltung
</router-link>
</p>
</div>
</div>
<div class="container">
<router-view />
</div>
</div>
</template> </template>
<script></script> <script setup lang="ts">
</script>
<style src="@/assets/main.css"></style> <style src="@/assets/main.css"></style>

View File

@ -2,15 +2,29 @@
padding: 0; padding: 0;
margin: 0; margin: 0;
box-sizing: border-box; box-sizing: border-box;
font-family: "Times New Roman"; font-family: "Helvetica";
}
.main-content {
margin-left: 275px;
margin-top: 10px;
}
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
#title {
padding-bottom: 10px;
} }
/* Header */ /* Header */
.header { .header {
background-color: #a5aeb5; background-color: #a5aeb5;
width: 100%; width: 100%;
margin-left: 250px;
} }
#header-table th { #header-table th {
@ -29,11 +43,18 @@
padding: 8px; padding: 8px;
} }
/* main content field */ /* The navigation menu links */
.main-container { .header a {
max-width: 70vw; text-decoration: none;
margin: auto; font-size: 18px;
padding-top: 10px; color: #e0e2e3;
display: block;
transition: 0.3s;
}
/* When you mouse over the navigation links, change their color */
.header a:hover {
color: #f1f1f1;
} }
/* The side navigation menu */ /* The side navigation menu */
@ -60,6 +81,7 @@
height: 75px; height: 75px;
font-weight: 600; font-weight: 600;
font-size: 40px; font-size: 40px;
text-align: center;
} }
/* The navigation menu links */ /* The navigation menu links */
@ -76,78 +98,22 @@
color: #f1f1f1; color: #f1f1f1;
} }
/* Position and style the close button (top right corner) */ /* Address Table */
.sidenav .closebtn { .address-table {
position: absolute; border-collapse: collapse;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
transition: margin-left .5s;
padding: 20px;
}
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
/* Styling for adresses */
/* search input */
input {
display: block;
width: 350px;
margin: 20px auto;
padding: 10px 45px;
background: white url("assets/search.svg") no-repeat 15px center;
background-size: 15px 15px;
font-size: 16px;
border: none;
border-radius: 5px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
/* error message */
.error {
background-color: tomato;
}
/* Adress Table */
.adress-content {
display: block;
width: 100%; width: 100%;
margin: 20px auto;
padding: 10px 45px;
background: white no-repeat 15px center;
background-size: 15px 15px;
font-size: 16px;
border: none;
border-radius: 5px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
} }
.adresses { .address-table th,
border: none; .address-table td {
border-radius: 5px; border: 1px solid #ddd;
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, padding: 8px;
rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; text-align: left;
} }
.adress-th { .address-table th {
border-radius: 1px; background-color: #f2f2f2;
border-style: groove; color: #333;
}
.adress-td {
border-radius: 1px;
border-style: groove;
} }

19
components/HeaderNav.vue Normal file
View File

@ -0,0 +1,19 @@
<template>
<div class="header">
<table id="header-table">
<tr>
<th>
<NuxtLink to="/header/help">
Hilfe
</NuxtLink>
</th>
<th>
<NuxtLink to="/header/info">
Info
</NuxtLink>
</th>
<th> Logout </th>
</tr>
</table>
</div>
</template>

15
components/SideNav.vue Normal file
View File

@ -0,0 +1,15 @@
<template>
<div class="sidenav">
<div class="sidenav-content">
<h1 class="menu-heading">
WebAdmin
</h1>
<NuxtLink to="/">
Home
</NuxtLink>
<NuxtLink to="/address-management/address_index">
Adressverwaltung
</NuxtLink>
</div>
</div>
</template>

36
data/addressData.json Normal file
View File

@ -0,0 +1,36 @@
{
"items":
[
{
"id": 1,
"customernumber": "0000",
"name": "Dieter Hillers",
"company": "Hedemann GmbH",
"street": "Oldenburger Str. 28",
"postalcode": "26639",
"location": "Wiesmoor",
"phone": "04944-1450"
},
{
"id": 2,
"customernumber": "1111",
"name": "Holger Hedemann",
"company": "Hedemann GmbH",
"street": "Oldenburger Str. 28",
"postalcode": "26639",
"location": "Wiesmoor",
"phone": "04944-1450"
},
{
"id": 3,
"customernumber": "2222",
"name": "Hilko Hartmann",
"company": "Hedemann GmbH",
"street": "Oldenburger Str. 28",
"postalcode": "26639",
"location": "Wiesmoor",
"phone": "04944-1450"
}
]
}

7
layouts/default.vue Normal file
View File

@ -0,0 +1,7 @@
<template>
<div>
<HeaderNav />
<SideNav />
<slot />
</div>
</template>

View File

View File

@ -3,6 +3,9 @@ export default defineNuxtConfig({
modules: [ modules: [
'@huntersofbook/naive-ui-nuxt' '@huntersofbook/naive-ui-nuxt'
], ],
css: [
'@/assets/main.css'
],
build: { build: {
transpile: [ transpile: [
'trpc-nuxt' 'trpc-nuxt'

2
package-lock.json generated
View File

@ -1,5 +1,5 @@
{ {
"name": "webadmin3.0", "name": "WebAdmin3.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {

View File

@ -0,0 +1,11 @@
<template>
<div class="main-content">
<h1 id="title">
Willkommen in der Adressverwaltung
</h1>
</div>
</template>
<script lang="ts">
</script>

View File

@ -1,18 +0,0 @@
<template>
<div class="main-container">
<div class="heading">
<h1>
Willkommen in der Adressverwaltung
</h1>
</div>
<div class="adress-content">
Text
</div>
</div>
</template>
<script>
</script>
<style src="@/assets/main.css"></style>

View File

@ -1,14 +0,0 @@
<template>
<div class="main-container">
<div class="heading">
<h1>
Kundenname
</h1>
</div>
<div class="content">
<p>Hier findest einen Kunden</p>
</div>
</div>
</template>
<style scoped src="@/assets/main.css"></style>

View File

@ -1,14 +1,10 @@
<template> <template>
<div class="main-container"> <div class="main-content">
<div class="heading"> <h1 id="title">
<h1> Hilfe
Hilfe </h1>
</h1>
</div>
<div class="content"> <div class="content">
<p>Hier findest du Hilfe</p> <p>Hier findest du Hilfe</p>
</div> </div>
</div> </div>
</template> </template>
<style scoped src="@/assets/main.css"></style>

View File

@ -1,14 +1,11 @@
<template> <template>
<div class="main-container"> <div class="main-content">
<div class="heading"> <h1 id="title">
<h1> Info
Info </h1>
</h1>
</div>
<div class="content"> <div class="content">
<p>Hier findest du Infos</p> <p>Hier findest du Infos</p>
</div> </div>
</div> </div>
</template> </template>
<style scoped src="@/assets/main.css"></style>

View File

@ -1,9 +1,7 @@
<template> <template>
<div class="main-container"> <div class="main-content">
<div class="heading"> <h1 id="title">
<h1>Willkommen</h1> Willkommen
</div> </h1>
</div> </div>
</template> </template>
<style src="@/assets/main.css"></style>

View File

@ -1,23 +0,0 @@
import { createRouter, createWebHistory } from 'vue-router'
import index from '@/pages/index.vue'
import adresses from '@/pages/adresses/adresses_index.vue'
import help from '@/pages/header/help'
import info from '@/pages/header/info'
const routes = [
{ path: '/', name: 'Home', component: index },
{ path: 'adresses/adresses_index', name: 'Adressverwaltung', component: adresses },
{ path: 'header/help', name: 'Hilfe', component: help },
{ path: 'header/info', name: 'Info', component: info }
]
const router = createRouter({
history: createWebHistory(),
routes
})
const app = createApp({})
app.use(router)
export default router