zhulu 1 өдөр өмнө
parent
commit
3961957efa

+ 7 - 2
src/views/menu/introduceLetter/letter/addOutInRequest.vue

@@ -25,7 +25,7 @@
               <template #default>
                 <div style="">
                   <ImageThumbnail
-                    :image-list="letterInfo.letterFile.map(v => v.url)"
+                    :image-list="letterInfo.letterFile.map(v => v.imgPath)"
                     height="80px"
                     width="90px"
                     radius="8px"
@@ -36,7 +36,7 @@
             </div>
             <div v-else>
               <van-cell title="出入事由" :value="letterInfo.letterReasons"></van-cell>
-              <van-cell style="color:#969799;" title="本次为紧急申请,无需上传介绍信附件,请根据制度要求,审慎提交申请。"></van-cell>
+              <van-cell class="urgent-notice" style="color:#969799;" title="本次为紧急申请,无需上传介绍信附件,请根据制度要求,审慎提交申请。"></van-cell>
             </div>
             
             
@@ -334,6 +334,11 @@ export default {
       flex:.70;
     }
   }
+  .urgent-notice{
+    .van-cell__title{
+      flex:1 !important;
+    }
+  }
 }
 </style>
 <style scoped lang="scss">

+ 16 - 10
src/views/menu/introduceLetter/letter/approvalOutInRequest.vue

@@ -25,7 +25,7 @@
               <template #default>
                 <div>
                   <ImageThumbnail
-                    :image-list="outInRequestInfo.letterFile.map(v => v.url)"
+                    :image-list="outInRequestInfo.letterFile.map(v => v.imgPath)"
                     height="80px"
                     width="90px"
                     radius="8px"
@@ -36,7 +36,7 @@
             </div>
             <div v-else>
               <van-cell title="出入事由" :value="outInRequestInfo.letterReasons"></van-cell>
-              <van-cell style="color:#969799;" title="本次为紧急申请,无需上传介绍信附件,请根据制度要求,审慎提交申请。"></van-cell>
+              <van-cell class="urgent-notice" style="color:#969799;" title="本次为紧急申请,无需上传介绍信附件,请根据制度要求,审慎提交申请。"></van-cell>
             </div>
             
             
@@ -138,7 +138,7 @@
         <div style="margin:10px;color:red;text-align:center;font-size:20px;">审批说明</div>
         <van-field
           v-model="approveRemark"
-          rows="4"
+          rows="2"
           autosize
           label=""
           type="textarea"
@@ -405,6 +405,11 @@ export default {
       flex:.70;
     }
   }
+  .urgent-notice{
+    .van-cell__title{
+      flex:1 !important;
+    }
+  }
 }
 </style>
 <style scoped lang="scss">
@@ -544,21 +549,22 @@ export default {
     display: flex;
     justify-content: space-between;
     align-items: center;
-    height: 90px;
+    height: 110px;
+    margin-bottom: 20px;
   }
   .header-line .cancel {
-    padding: 0 30px;
-    font-size: 28px;
+    padding: 0 60px;
+    font-size: 36px;
     color: #969799;
   }
   .header-line .title {
-    font-weight: 500;
-    font-size: 30px;
+    font-weight: 600;
+    font-size: 36px;
     color: #343434;
   }
   .header-line .sure {
-    padding: 0 30px;
-    font-size: 28px;
+    padding: 0 60px;
+    font-size: 36px;
     color: #1989fa;
   }
   .lists {

+ 7 - 2
src/views/menu/introduceLetter/letter/letterdetail.vue

@@ -25,7 +25,7 @@
               <template #default>
                 <div>
                   <ImageThumbnail
-                    :image-list="letterInfo.letterFile.map(v => v.url)"
+                    :image-list="letterInfo.letterFile.map(v => v.imgPath)"
                     height="80px"
                     width="90px"
                     radius="8px"
@@ -36,7 +36,7 @@
             </div>
             <div v-else>
               <van-cell title="出入事由" :value="letterInfo.reasons"></van-cell>
-              <van-cell style="color:#969799;" title="本次为紧急申请,无需上传介绍信附件,请根据制度要求,审慎提交申请。"></van-cell>
+              <van-cell class="urgent-notice" is-row style="color:#969799;" title="本次为紧急申请,无需上传介绍信附件,请根据制度要求,审慎提交申请。"></van-cell>
             </div>
             
             
@@ -223,6 +223,11 @@ export default {
       flex:.70;
     }
   }
+  .urgent-notice{
+    .van-cell__title{
+      flex:1 !important;
+    }
+  }
 }
 </style>
 <style scoped lang="scss">

+ 7 - 2
src/views/menu/introduceLetter/letter/refuseOutInRequestDetail.vue

@@ -25,7 +25,7 @@
                 <template #default>
                 <div>
                   <ImageThumbnail
-                    :image-list="outInRequestInfo.letterFile.map(v => v.url)"
+                    :image-list="outInRequestInfo.letterFile.map(v => v.imgPath)"
                     height="80px"
                     width="90px"
                     radius="8px"
@@ -36,7 +36,7 @@
             </div>
             <div v-else>
               <van-cell title="出入事由" :value="outInRequestInfo.letterReasons"></van-cell>
-              <van-cell style="color:#969799;" title="本次为紧急申请,无需上传介绍信附件,请根据制度要求,审慎提交申请。"></van-cell>
+              <van-cell class="urgent-notice" style="color:#969799;" title="本次为紧急申请,无需上传介绍信附件,请根据制度要求,审慎提交申请。"></van-cell>
             </div>
             
             
@@ -221,6 +221,11 @@ export default {
       flex:.70;
     }
   }
+  .urgent-notice{
+    .van-cell__title{
+      flex:1 !important;
+    }
+  }
 }
 </style>
 <style scoped lang="scss">

+ 7 - 2
src/views/menu/introduceLetter/outIn/OutInCompleteDetail.vue

@@ -16,7 +16,7 @@
               <template #default>
                 <div>
                   <ImageThumbnail
-                    :image-list="outInRequestInfo.letterFile.map(v => v.url)"
+                    :image-list="outInRequestInfo.letterFile.map(v => v.imgPath)"
                     height="80px"
                     width="90px"
                     radius="8px"
@@ -28,7 +28,7 @@
             </div>
             <div v-else>
               <van-cell title="出入事由" :value="outInRequestInfo.letterReasons"></van-cell>
-              <van-cell style="color:#969799;" title="本次为紧急申请,无需上传介绍信附件,请根据制度要求,审慎提交申请。"></van-cell>
+              <van-cell class="urgent-notice" style="color:#969799;" title="本次为紧急申请,无需上传介绍信附件,请根据制度要求,审慎提交申请。"></van-cell>
             </div>
           </div>
         </van-panel>
@@ -247,6 +247,11 @@ export default {
       position: relative;
     }
   }
+  .urgent-notice{
+    .van-cell__title{
+      flex:1 !important;
+    }
+  }
 }
 </style>
 <style scoped lang="scss">

+ 7 - 2
src/views/menu/introduceLetter/outIn/fillOutInInfo.vue

@@ -25,7 +25,7 @@
               <template #default>
                 <div>
                   <ImageThumbnail
-                    :image-list="outInRequestInfo.letterFile.map(v => v.url)"
+                    :image-list="outInRequestInfo.letterFile.map(v => v.imgPath)"
                     height="80px"
                     width="90px"
                     radius="8px"
@@ -36,7 +36,7 @@
             </div>
             <div v-else>
               <van-cell title="出入事由" :value="outInRequestInfo.letterReasons"></van-cell>
-              <van-cell style="color:#969799;" title="本次为紧急申请,无需上传介绍信附件,请根据制度要求,审慎提交申请。"></van-cell>
+              <van-cell class="urgent-notice" style="color:#969799;" title="本次为紧急申请,无需上传介绍信附件,请根据制度要求,审慎提交申请。"></van-cell>
             </div>
             
             
@@ -679,6 +679,11 @@ export default {
       position: relative;
     }
   }
+  .urgent-notice{
+    .van-cell__title{
+      flex:1 !important;
+    }
+  }
 }
 </style>
 <style scoped lang="scss">