Răsfoiți Sursa

fix:表格样式调整

wangshuang 1 an în urmă
părinte
comite
8fe4671f02
1 a modificat fișierele cu 15 adăugiri și 9 ștergeri
  1. 15 9
      inspur-ui/src/views/party_work/meeting/info.vue

+ 15 - 9
inspur-ui/src/views/party_work/meeting/info.vue

@@ -238,10 +238,10 @@
       <div class="display-cloumn">
         <div class="line-grey" />
         <div class="display-row">
-          <div class="display-cloumn" style="width: 37%;height: calc(70vh - 51px);padding: 16px 0px 24px 24px;">
-            <div class="text-fontsize-16" style="color: #545454;">人员列表</div>
+          <div class="display-cloumn" style="width: 37%;height: calc(70vh - 51px);padding: 16px 0px 24px 20px;">
+            <div class="text-fontsize-16" style="color: #545454;margin-left: 4px;">人员列表</div>
             <div style="height: 93%;margin-top: 10px;">
-              <el-table v-loading="loading" class="borderless-table" :data="attendanceList" height="100%" row-key="id">
+              <el-table v-loading="loading" class="no-border" :data="attendanceList" height="100%" row-key="id">
                 <el-table-column label="姓名" align="left" prop="memberName" width="100" />
                 <el-table-column label="出勤情况" align="left" prop="attendanceStatus" width="100">
                   <template slot-scope="scope">
@@ -294,14 +294,14 @@
       <div class="display-cloumn">
         <div class="line-grey" />
         <div class="display-row">
-          <div class="display-cloumn" style="width: 43%;height: calc(70vh - 51px);padding: 16px 0px 24px 24px;">
-            <div class="text-fontsize-16" style="color: #545454;">会议录音</div>
+          <div class="display-cloumn" style="width: 43%;height: calc(70vh - 51px);padding: 16px 0px 24px 20px;">
+            <div class="text-fontsize-16" style="color: #545454;margin-left:4px">会议录音</div>
             <div style="height: 93%;margin-top: 10px;" class="display-cloumn">
-              <el-table v-loading="loading" class="borderless-table" :data="audioList" height="83%" row-key="id"
+              <el-table v-loading="loading" class="no-border" :data="audioList" height="83%" row-key="id"
                 @row-click="showAudioTxt" @selection-change="handleSelectionChange">
-                <el-table-column label="序号" align="center" prop="sort" width="50" />
+                <el-table-column label="序号" align="left" prop="sort" width="50" />
                 <el-table-column label="文件名称" align="left" prop="fileName" :show-overflow-tooltip="true" />
-                <el-table-column label="文本准换" align="center" prop="isTranslate" width="80">
+                <el-table-column label="文本准换" align="left" prop="isTranslate" width="80">
                   <template slot-scope="scope">
                     <dict-tag :options="dict.type.sys_asr_status" :value="scope.row.isTranslate" />
                   </template>
@@ -888,6 +888,7 @@
         const id = this.meetingId;
         getMeeting(id).then(response => {
           // 会议照片集合
+          this.selectedItems = [];
           if (response.data.imageList != null && response.data.imageList.length > 0) {
             this.photoList = response.data.imageList;
             console.log('photoList', this.photoList)
@@ -1606,9 +1607,14 @@
   }
 
 
-  table th,
+  /* table th,
   table td {
     border-bottom: none !important;
+  } */
+
+  .no-border th,
+  .no-border td{
+     border-bottom: none !important;
   }
 
   .custom-text-color {