shiyanyu 1 месяц назад
Родитель
Сommit
f94348a53b

+ 1 - 1
src/components/task/cbjsInfo.vue

@@ -228,7 +228,7 @@
   .audit-tabs .el-tabs__content {
     height: calc(100% - 60px); /* 减去标签头的高度 */
     overflow-y: auto; /* 这是最重要的设置,确保内容超出时显示滚动条 */
-    padding: 15px;
+    /* padding: 15px; */
     box-sizing: border-box;
   }
 

+ 5 - 4
src/components/task/components/auditOpinion.vue

@@ -4,7 +4,7 @@
     <div class="opinion-section">
       <div class="opinion-header">
         <h3>成本审核初步意见</h3>
-        <el-button
+        <!-- <el-button
           class="ml10"
           type="primary"
           size="small"
@@ -12,7 +12,7 @@
           @click="handleSavePreliminaryOpinion"
         >
           保存
-        </el-button>
+        </el-button> -->
       </div>
 
       <el-form
@@ -91,7 +91,7 @@
     <div class="opinion-section">
       <div class="opinion-header">
         <h3>成本审核结论意见</h3>
-        <el-button
+        <!-- <el-button
           class="ml10"
           type="primary"
           size="small"
@@ -99,7 +99,7 @@
           @click="handleSaveConclusionOpinion"
         >
           保存
-        </el-button>
+        </el-button> -->
       </div>
 
       <el-form :model="conclusionOpinionForm" label-width="180px">
@@ -438,6 +438,7 @@
     display: flex;
     flex-direction: column;
     gap: 20px;
+    padding: 0;
   }
 
   .opinion-section {

+ 4 - 4
src/components/task/components/costAudit.vue

@@ -67,7 +67,7 @@
           </el-col>
         </el-row>
       </el-form>
-      <el-button
+      <!-- <el-button
         type="primary"
         size="small"
         :disabled="disabled"
@@ -106,7 +106,7 @@
         @click="handleSaveAudit"
       >
         保存核定数据
-      </el-button>
+      </el-button> -->
     </div>
 
     <el-table :data="costAuditData" style="width: 100%" border>
@@ -328,9 +328,9 @@
 </script>
 
 <style scoped>
-  .app-container {
+  /* .app-container {
     padding: 20px;
-  }
+  } */
 
   .audit-controls {
     margin-bottom: 20px;

+ 9 - 9
src/components/task/components/extractMaterial.vue

@@ -1,15 +1,15 @@
 <template>
   <div class="extract-material-container">
-    <div class="extract-controls">
-      <!-- <el-button type="primary" @click="handleAddExtract">添加资料</el-button> -->
-      <!-- <el-button
+    <!-- <div class="extract-controls">
+       <el-button type="primary" @click="handleAddExtract">添加资料</el-button>
+       <el-button
         type="danger"
         :disabled="selectedRows.length === 0"
         @click="handleBatchDelete"
       >
         批量删除
-      </el-button> -->
-    </div>
+      </el-button> 
+    </div> -->
 
     <el-table
       v-loading="loading"
@@ -55,7 +55,7 @@
         align="center"
         show-overflow-tooltip
       ></el-table-column>
-      <el-table-column label="操作" width="180" fixed="right">
+      <!-- <el-table-column label="操作" width="180" fixed="right">
         <template slot-scope="scope">
           <el-button
             type="primary"
@@ -74,7 +74,7 @@
             删除
           </el-button>
         </template>
-      </el-table-column>
+      </el-table-column> -->
     </el-table>
     <el-dialog
       :visible.sync="dialogVisible"
@@ -658,9 +658,9 @@
 </script>
 
 <style scoped>
-  .extract-material-container {
+  /* .extract-material-container {
     padding: 20px;
-  }
+  } */
 
   .extract-controls {
     margin-bottom: 20px;

+ 8 - 1
src/components/task/components/messageNotify.vue

@@ -1,5 +1,5 @@
 <template>
-  <div>
+  <div class="message-notify-container">
     <el-table style="width: 100%; margin-top: 20px" border :data="formData">
       <el-table-column prop="id" label="序号" width="120" align="center">
         <template slot-scope="scope">
@@ -107,3 +107,10 @@
     },
   }
 </script>
+
+<style scoped>
+  /* 移除最外层容器的 padding */
+  div {
+    padding: 0;
+  }
+</style>

+ 7 - 7
src/components/task/components/workDraft.vue

@@ -10,7 +10,7 @@
       @ready="onEditorReady"
     />
     <!-- 工作底稿列表 -->
-    <div>
+    <!-- <div>
       <el-button
         type="primary"
         size="small"
@@ -19,7 +19,7 @@
       >
         核增核减记录
       </el-button>
-    </div>
+    </div> -->
     <el-table
       v-loading="loading"
       :data="workingPaperRecords"
@@ -48,7 +48,7 @@
         label="时间"
         width="180"
       ></el-table-column>
-      <el-table-column label="附件" width="100">
+      <el-table-column label="附件" width="150">
         <template slot-scope="scope">
           <el-button
             v-if="scope.row.attachments && scope.row.attachments.length > 0"
@@ -60,7 +60,7 @@
           </el-button>
         </template>
       </el-table-column>
-      <el-table-column label="操作" width="150">
+      <!-- <el-table-column label="操作" width="150">
         <template slot-scope="scope">
           <el-button
             type="text"
@@ -79,7 +79,7 @@
             删除
           </el-button>
         </template>
-      </el-table-column>
+      </el-table-column> -->
     </el-table>
 
     <!-- 工作底稿编辑弹窗 -->
@@ -685,9 +685,9 @@
 </script>
 
 <style scoped>
-  .work-draft-container {
+  /* .work-draft-container {
     padding: 20px;
-  }
+  } */
 
   .working-paper-editor {
     margin-bottom: 20px;