Forráskód Böngészése

修复pad端测试问题

wangshuang 1 éve
szülő
commit
3ae0651c8e
1 módosított fájl, 13 hozzáadás és 10 törlés
  1. 13 10
      inspur-ui/src/views/party_work/meeting/info_pad.vue

+ 13 - 10
inspur-ui/src/views/party_work/meeting/info_pad.vue

@@ -26,7 +26,7 @@
           <div class="text-fontsize-12" style="margin-left: 4px;">发起组织:{{form.fromOrg}}</div>
         </div>
         <div v-if="selectedFileIndex>=0">
-          <div class="text-fontsize-12">{{meetTitle}}</div>
+          <div class="text-fontsize-12 single-line" style="max-width :300px">{{meetTitle}}</div>
         </div>
       </div>
       <div class="display-row display-between" style="margin-top: 15px;">
@@ -216,8 +216,8 @@
         </div>
       </span>
       <span slot="footer" class="display-row" style="display: flex;align-items: center;justify-content: space-between;">
-        <div></div>
-        <div class="display-row display-center" style="margin-left: 80px;">
+        <div style="width:80px"></div>
+        <div class="display-row display-center">
           <div class="display-cloumn display-center" style="margin-left:24px">
             <el-image v-if="isPhotoing == false" :src="iconPhotoGrey" class="icon-40" @click="takePhoto" />
             <el-image v-else :src="iconPhotoingGrey" class="icon-40" />
@@ -243,7 +243,7 @@
       <div class="display-cloumn">
         <div class="line-grey" />
         <div class="display-row">
-          <div class="display-cloumn" style="width: 37%;height: calc(67vh - 52px);padding: 8px 0px 12px 0px;">
+          <div class="display-cloumn" style="width: 37%;height: calc(75vh - 52px);padding: 8px 0px 12px 0px;">
             <div class="text-fontsize-12" style="color: #545454;margin-left: 10px;">人员列表</div>
             <div style="height: 95.5%;margin-top: 10px;">
               <el-table v-loading="loading" class="no-border" :data="attendanceList" height="100%" row-key="id">
@@ -259,7 +259,7 @@
             </div>
           </div>
           <div class="line-grey-column" />
-          <div class="display-cloumn" style="width: 62%;height: calc(67vh - 52px);padding: 8px 16px 16px 16px;">
+          <div class="display-cloumn" style="width: 62%;height: calc(75vh - 52px);padding: 8px 16px 16px 16px;">
             <div class="text-fontsize-12" style="color: #545454;margin-bottom: 10px;">人脸签到</div>
             <el-image v-if="faceSignUrl && faceSignUrl.length>0" style="width: 100%;height:65%" :src="faceSignUrl" />
             <el-image v-else style="width: 100%;height:65%" :src="dialogimgEmpty"></el-image>
@@ -300,7 +300,7 @@
       <div class="display-cloumn">
         <div class="line-grey" />
         <div class="display-row">
-          <div class="display-cloumn" style="width: 43%;height: calc(67vh - 51px);padding: 8px 0px 12px 0px;">
+          <div class="display-cloumn" style="width: 43%;height: calc(75vh - 51px);padding: 8px 0px 12px 0px;">
             <div class="text-fontsize-12" style="color: #545454;margin-left:4px">会议录音</div>
             <div style="height: 93%;margin-top: 10px;" class="display-cloumn">
               <el-table v-loading="loading" class="no-border" :data="audioList" height="83%" row-key="id"
@@ -338,10 +338,10 @@
             </div>
           </div>
           <div class="line-grey-column" />
-          <div class="display-cloumn" style="width: 57%;height: calc(67vh - 51px);padding:8px 12px 12px 12px">
+          <div class="display-cloumn" style="width: 57%;height: calc(75vh - 51px);padding:8px 12px 12px 12px">
             <div class="text-fontsize-12" style="color: #545454;margin-bottom: 10px;">录音内容</div>
             <el-input resize="none" v-model="audioTxt"  type="textarea"
-              :readonly="audioReadOnly" :rows="13" placeholder="请输入内容" class="meet-input" />
+              :readonly="audioReadOnly" :rows="16" placeholder="请输入内容" class="meet-input" />
             <div style="margin-top: 18px;display: flex;justify-content: center;align-items: center;">
               <el-button type="primary" @click="audioTxtEdit" style="font-size:12px">文本编辑</el-button>
               <el-button type="primary" @click="audioTxtSave" style="font-size:12px">文本保存</el-button>
@@ -1685,6 +1685,7 @@
     /* 隐藏溢出的内容 */
     text-overflow: ellipsis;
     /* 添加省略号表示文本被截断 */
+     word-break:keep-all;
   }
 
   .line {
@@ -1701,7 +1702,7 @@
 
   .line-grey-column {
     width: 1px;
-    height: calc(67vh - 52px);
+    height: calc(75vh - 52px);
     background-color: #E5E6EB;
   }
 
@@ -1746,7 +1747,7 @@
     top: 45%;
     left: 50%;
     transform: translate(-50%, -50%);
-    height: 67vh;
+    height: 75vh;
     width: 75vw;
     max-width: calc(100% - 30px);
   }
@@ -1848,4 +1849,6 @@ height: 0px;
   color: #545454;
 }
 /* Vue组件内的<style>标签或者单独的CSS文件 */
+
+
 </style>