From 1e7dad751b74e79b983a60cd6a9f275174e9af4f Mon Sep 17 00:00:00 2001 From: Vinjor Date: Sat, 26 Oct 2024 13:30:00 +0800 Subject: [PATCH 1/2] 1 --- components/VNavigationBar.vue | 11 + pages-repair/apply/applyForm.vue | 23 +- pages-repair/apply/newWare.vue | 411 +++++++++++++++++++++++++++++++ pages-warehouse/home/home.vue | 5 +- pages.json | 6 + 5 files changed, 448 insertions(+), 8 deletions(-) create mode 100644 pages-repair/apply/newWare.vue diff --git a/components/VNavigationBar.vue b/components/VNavigationBar.vue index 00718e1..b3a4c83 100644 --- a/components/VNavigationBar.vue +++ b/components/VNavigationBar.vue @@ -22,6 +22,9 @@ + + 新增 + @@ -53,6 +56,11 @@ export default { showClear: { type: Boolean, default: false + }, + //新增配件 + addWares:{ + type: Boolean, + default: false } }, mounted() { @@ -88,6 +96,9 @@ export default { }, clearNoReadFun(){ this.$emit('clearNoRead') + }, + addNewWares(){ + this.$emit('addNewWares') } } } diff --git a/pages-repair/apply/applyForm.vue b/pages-repair/apply/applyForm.vue index 50cbd48..abdfe66 100644 --- a/pages-repair/apply/applyForm.vue +++ b/pages-repair/apply/applyForm.vue @@ -1,6 +1,6 @@