From be38143ffbb2dd73d14ed8b5e294c9a842b0947b Mon Sep 17 00:00:00 2001 From: Georg Spar Date: Mon, 26 Jun 2023 22:12:06 +0200 Subject: [PATCH] =?UTF-8?q?Anpassen=20der=20Funktionen=20f=C3=BCr=20CRUD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/Bought.vue | 2 +- components/Evaluated.vue | 50 ++++--- components/Itembdetail.vue | 1 + components/Itemextdetail.vue | 13 +- components/UpdEval.vue | 249 +++++++++++++++++++++++++++++++++++ components/Upditemext.vue | 51 ++++--- components/upditemb.vue | 1 + 7 files changed, 312 insertions(+), 55 deletions(-) create mode 100644 components/UpdEval.vue diff --git a/components/Bought.vue b/components/Bought.vue index 8dbb38f..1c48dd8 100644 --- a/components/Bought.vue +++ b/components/Bought.vue @@ -140,7 +140,7 @@ async function awaitItemsb() { async function openEval(id: number) { - dialog.open(Upditemext, {data: {id: id}}); + dialog.open(Upditemext, {data: {id: id, isupdate: false}}); } async function openFrontview(iid: number) { diff --git a/components/Evaluated.vue b/components/Evaluated.vue index 8dc706e..c03651f 100644 --- a/components/Evaluated.vue +++ b/components/Evaluated.vue @@ -4,7 +4,7 @@