From b4b3cb3641ecdf56cdfdf3532e5acf4af46fbe48 Mon Sep 17 00:00:00 2001
From: zuozhengqing <a13193816592@163.com>
Date: 星期二, 12 十二月 2023 18:33:45 +0800
Subject: [PATCH] 新增出入库明细页面,添加无权限展示页面,接口调整

---
 src/views/overview/OverviewListView.vue |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/src/views/overview/OverviewListView.vue b/src/views/overview/OverviewListView.vue
index de6c5c0..6a6fc75 100644
--- a/src/views/overview/OverviewListView.vue
+++ b/src/views/overview/OverviewListView.vue
@@ -40,7 +40,7 @@
     <!-- 鏂板缓/缂栬緫 -->
     <AddOverviewDialog
       v-if="editConfig.visible"
-      :work-type="workType"
+      :workType="workType"
       :edit-common-config="editConfig"
       :add-name="addName"
       :display-edit="displayEdit"
@@ -87,7 +87,6 @@
     }
   },
   created() {
-    console.log(this.workType)
     this.setFormToLabel()
     this.setTable()
     var paramsData = sessionStorage.getItem("paramsData")
@@ -235,7 +234,7 @@
     async getData() {
       await getOperation({
         number: this.keyword,
-        operationTypeId: this.params.id,
+        operationTypeId: this.$route.params.id?this.$route.params.id:this.params.id,
         page: this.pagerOptions.currPage,
         pageSize: this.pagerOptions.pageSize,
         status: this.params.status
@@ -263,7 +262,6 @@
     },
     // 鏌ョ湅 缂栬緫
     tableRowClick(row, val) {
-      console.log(row)
       this.editConfig.visible = true
       this.editConfig.title = val
       this.editConfig.operationTypeId = this.params.id

--
Gitblit v1.8.0