From 134021d8bc45be32b6b145eb04c80c505d8d9c0b Mon Sep 17 00:00:00 2001
From: licp <lichunping@guanfang.com.cn>
Date: 星期三, 25 十二月 2024 10:29:57 +0800
Subject: [PATCH] cnas历史记录审批后不可添加修改

---
 src/components/view/a8-external-document-confirmation-records.vue |   15 ++++++++++-----
 1 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/src/components/view/a8-external-document-confirmation-records.vue b/src/components/view/a8-external-document-confirmation-records.vue
index 9ca85f3..c0564b3 100644
--- a/src/components/view/a8-external-document-confirmation-records.vue
+++ b/src/components/view/a8-external-document-confirmation-records.vue
@@ -4,17 +4,17 @@
     <el-row class="title">
       <el-col :span="20" style="padding-left: 20px;text-align: left;">澶栨潵鏂囦欢纭璁板綍</el-col>
     </el-row>
-    <el-tabs type="border-card" v-model="activeName" style="height: 100%;">
+    <el-tabs type="border-card" v-model="activeName" style="height: 100%;" @tab-click="tabClick">
       <el-tab-pane label="濉啓" name="濉啓" style="height: 100%;">
         <div style="display: flex;align-items: center;justify-content: flex-end;margin-right: 20px;">
-          <el-button size="small" type="primary" @click="handleAdd0" style="margin-left: 20px;" v-if="addPower">鏂板</el-button>
+          <el-button size="small" type="primary" @click="handleAdd0" style="margin-left: 20px;" v-if="addPower&&!currentInfo.ratifyUserName">鏂板</el-button>
           <el-upload :action="action" :multiple="false"
               :show-file-list="false"
           accept='.doc,.docx' :headers="headers" :on-change="beforeUpload"
-          :on-error="onError" ref='upload' v-if="upPower" :on-success="handleSuccessUp" style="display:inline-block;margin-left: 20px;">
+          :on-error="onError" ref='upload' v-if="upPower&&!currentInfo.ratifyUserName" :on-success="handleSuccessUp" style="display:inline-block;margin-left: 20px;">
           <el-button size="small" type="primary" :loading="upLoading">瀵煎叆</el-button></el-upload>
         </div>
-        <div class="table" style="height: calc(100% - 200px)" v-if="activeName=='鍘嗗彶璁板綍'">
+        <div class="table" style="height: calc(100% - 200px)" v-if="activeName=='濉啓'">
           <ValueTable ref="ValueTable0" :url="$api.manageRecordTotal.pageManageRecordVerify"
       :componentData="componentData0" :key="upIndex0" :delUrl="$api.manageRecordTotal.delManageRecordVerify" :upUrl="$api.manageRecordTotal.doManageRecordVerify" />
         </div>
@@ -37,7 +37,7 @@
             <el-button size="small" type="primary" @click="refreshTable()">鏌� 璇�</el-button>
           </div>
         </div>
-        <div class="table">
+        <div class="table" v-if="activeName=='鍘嗗彶璁板綍'">
           <ValueTable ref="ValueTable" :url="$api.manageRecordTotal.pageManageRecordTotal"
             :componentData="componentData" :key="upIndex"/>
         </div>
@@ -332,6 +332,11 @@
         this.lookDialogVisible = false
       }).catch(err=>{});
     },
+    tabClick(e){
+      if(e.index==0){
+        this.currentInfo = this.$refs['ValueTable'].tableData[0]
+      }
+    }
   }
 }
 </script>

--
Gitblit v1.9.3