From 901be26b0491501afe8eb145392a8d8c307f0138 Mon Sep 17 00:00:00 2001
From: 唐耀东 <18861537@qq.com>
Date: 星期三, 12 十月 2022 16:37:09 +0800
Subject: [PATCH] 新增施工交付其他交付功能

---
 src/views/construction/constructionList/index.vue |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/views/construction/constructionList/index.vue b/src/views/construction/constructionList/index.vue
index 97929f0..9ced228 100644
--- a/src/views/construction/constructionList/index.vue
+++ b/src/views/construction/constructionList/index.vue
@@ -30,6 +30,9 @@
           <el-tab-pane label="杞欢绯荤粺" name="eight">
             <system v-if="activeName === 'eight'" :schoolId="schoolId"></system>
           </el-tab-pane>
+          <el-tab-pane label="鍏朵粬" name="nine">
+            <other v-if="activeName === 'nine'" :schoolId="schoolId"></other>
+          </el-tab-pane>
         </el-tabs>
         <div class="right-view-title-icon">
           <img alt="" title="鏂藉伐鎵规" src="@/assets/images/batch-icon.png" @click="batchOpen = true" class="right-view-title-icon-item" />
@@ -58,6 +61,7 @@
 import exchange from '../exchange'
 import server from '../server'
 import system from '../system'
+import other from '../other'
 
 export default {
   name: "constructionList",
@@ -71,7 +75,8 @@
     ai,
     exchange,
     server,
-    system
+    system,
+    other
   },
   data() {
     return {
@@ -86,7 +91,7 @@
     // 閫夋嫨楂樻牎
     schoolChange(v) {
       this.schoolId = v;
-      this.activeName = 'second';
+      this.activeName = 'first';
       this.loading = false;
     },
     handleClick(tab, event) {

--
Gitblit v1.9.1