From 81968266ce4f121394caf10c29638f25034b7305 Mon Sep 17 00:00:00 2001
From: 祖安之光 <11848914+light-of-zuan@user.noreply.gitee.com>
Date: 星期二, 08 七月 2025 16:27:55 +0800
Subject: [PATCH] 修改新增

---
 src/views/build/conpanyFunctionConsult/orgStructure/departManage/components/dutyDialog.vue |   20 +++++++++++---------
 1 files changed, 11 insertions(+), 9 deletions(-)

diff --git a/src/views/build/conpanyFunctionConsult/orgStructure/departManage/components/dutyDialog.vue b/src/views/build/conpanyFunctionConsult/orgStructure/departManage/components/dutyDialog.vue
index 4820123..b78fe03 100644
--- a/src/views/build/conpanyFunctionConsult/orgStructure/departManage/components/dutyDialog.vue
+++ b/src/views/build/conpanyFunctionConsult/orgStructure/departManage/components/dutyDialog.vue
@@ -69,7 +69,7 @@
             <el-input
                 v-model.trim="scope.row.clauseNum"
                 size="large"
-                type="textarea" :autosize="{minRows: 1}"
+                type="textarea"
                 v-if="scope.$index>4 && scope.$index<state.form.sysDeptResponsibilityList.length-2"
                 style="width: 100%;"
             >
@@ -84,7 +84,7 @@
             <el-input
                 v-model.trim="scope.row.content"
                 size="large"
-                type="textarea" :autosize="{minRows: 1}"
+                type="textarea"
                 v-if="scope.$index>4 && scope.$index<state.form.sysDeptResponsibilityList.length-2"
                 style="width: 100%;"
             >
@@ -112,7 +112,7 @@
             <el-input
                 v-model.trim="scope.row.leader"
                 size="large"
-                type="textarea" :autosize="{minRows: 1}"
+                type="textarea"
                 style="width: 100%;"
             >
             </el-input>
@@ -123,7 +123,7 @@
             <el-input
                 v-model.trim="scope.row.evidenceMaterials"
                 size="large"
-                type="textarea" :autosize="{minRows: 1}"
+                type="textarea"
                 style="width: 100%;"
             >
             </el-input>
@@ -134,7 +134,7 @@
             <el-input
                 v-model.trim="scope.row.managementDocuments"
                 size="large"
-                type="textarea" :autosize="{minRows: 1}"
+                type="textarea"
                 style="width: 100%;"
                 clearable
             >
@@ -145,7 +145,7 @@
           <template #default="scope">
             <el-input
                 v-model.trim="scope.row.technicalDocuments"
-                type="textarea" :autosize="{minRows: 1}"
+                type="textarea"
                 size="large"
                 style="width: 100%;"
             >
@@ -156,7 +156,7 @@
           <template #default="scope">
             <el-input
                 v-model.trim="scope.row.existingRecords"
-                type="textarea" :autosize="{minRows: 1}"
+                type="textarea"
                 size="large"
                 style="width: 100%;"
             >
@@ -324,8 +324,8 @@
   if(valid){
     state.form.delData = state.oldResponsibilityList.filter(oldItem => !state.form.sysDeptResponsibilityList.some(newItem => newItem.id === oldItem.id)).map(item => item.id)
     for(let i of state.form.sysDeptResponsibilityList){
-      if(i.clauseNum == '' || i.content=='' || i.leader == ''){
-        ElMessage.warning('条款编号、内容、负责人不可为空')
+      if(i.clauseNum == '' || i.content==''){
+        ElMessage.warning('条款编号、内容不可为空')
         return
       }
     }
@@ -377,9 +377,11 @@
   .customedTable{
     .el-table__cell{
       padding: 2px 0 !important;
+      font-size: 14px !important;
     }
     .cell{
       padding: 0 2px !important;
+      font-size: 14px !important;
     }
   }
 </style>
\ No newline at end of file

--
Gitblit v1.9.2