From 142bcc9b22f48a8a2098a66b2964fe10c97c6fe8 Mon Sep 17 00:00:00 2001
From: k94314517 <8417338+k94314517@user.noreply.gitee.com>
Date: 星期二, 20 五月 2025 11:19:49 +0800
Subject: [PATCH] git ch

---
 company/src/components/business/OperaSolutionsDescWindow.vue |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/company/src/components/business/OperaSolutionsDescWindow.vue b/company/src/components/business/OperaSolutionsDescWindow.vue
index 988a7fe..67a8b60 100644
--- a/company/src/components/business/OperaSolutionsDescWindow.vue
+++ b/company/src/components/business/OperaSolutionsDescWindow.vue
@@ -57,9 +57,10 @@
                     <div class="info_list_item_val" ><a v-if="form.fanganFile && form.fanganFile.fileurlFull" style="cursor: pointer;color: #2E68EC" title="鐐瑰嚮鏌ョ湅" @click="openFile(form.fanganFile.fileurlFull)">{{ form.fanganFile.name || '鐐瑰嚮鏌ョ湅' }}</a></div>
                 </div>
             </div>
-            <div style="font-size: 18px; font-weight: bold; margin-bottom: 10px;">鏂规浣跨敤鎯呭喌</div>
+            <div style="font-size: 18px; font-weight: bold; margin-bottom: 10px;" v-if="userInfo.type === 0">鏂规浣跨敤鎯呭喌</div>
             <el-table
-                :data="form.worktypeList"
+                v-if="userInfo.type === 0"
+                :data="list"
                 border
                 style="width: 100%; margin-bottom: 20px;">
                 <el-table-column
@@ -157,7 +158,8 @@
         signKeyword: '',
         worktypeList: [],
         worktypeIdList: []
-      }
+      },
+      list: []
     }
   },
   computed: {
@@ -219,7 +221,7 @@
     getList() {
       listForCompany({ solutionId: this.form.id })
         .then(res => {
-          console.log(res)
+          this.list = res
         })
     },
     openFile (url) {

--
Gitblit v1.9.3