jinhui.wang

样式修改

...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
47 <i slot="reference" class="el-icon-question questionIcon" /> 47 <i slot="reference" class="el-icon-question questionIcon" />
48 </el-popover> --> 48 </el-popover> -->
49 </div> 49 </div>
50 - <div class="tipDom" v-if="item.uploadType == 'OTH'"> 50 + <div class="tipDom" v-if="item.uploadType == 'attachmentBizType_04'">
51 Please provide 51 Please provide
52 <span class="tipWeight">certificate of origin,contract</span>,etc. 52 <span class="tipWeight">certificate of origin,contract</span>,etc.
53 if have any.<br /> 53 if have any.<br />
...@@ -55,8 +55,8 @@ ...@@ -55,8 +55,8 @@
55 <span class="tipWeight">purchase receipts</span> or other support 55 <span class="tipWeight">purchase receipts</span> or other support
56 clearance documents if declaring personal items. 56 clearance documents if declaring personal items.
57 </div> 57 </div>
58 - <!-- <div v-else>Waybill upload</div> -->
59 </div> 58 </div>
59 + <div class="uploadFiles">
60 <div 60 <div
61 class="uploadFileList" 61 class="uploadFileList"
62 v-for="(file, idx) in item.files" 62 v-for="(file, idx) in item.files"
...@@ -89,13 +89,17 @@ ...@@ -89,13 +89,17 @@
89 title="Do you want to delete this file?" 89 title="Do you want to delete this file?"
90 @confirm="delFile(file)" 90 @confirm="delFile(file)"
91 > 91 >
92 - <el-button slot="reference" type="text" :loading="file.delLoading" 92 + <el-button
93 + slot="reference"
94 + type="text"
95 + :loading="file.delLoading"
93 >DELETE</el-button 96 >DELETE</el-button
94 > 97 >
95 </el-popconfirm> 98 </el-popconfirm>
96 </div> 99 </div>
97 </div> 100 </div>
98 </div> 101 </div>
102 + </div>
99 <!-- <el-button 103 <!-- <el-button
100 v-if="!uploadType" 104 v-if="!uploadType"
101 type="text" 105 type="text"
...@@ -363,6 +367,9 @@ export default { ...@@ -363,6 +367,9 @@ export default {
363 color: $fedexError; 367 color: $fedexError;
364 } 368 }
365 } 369 }
370 + .uploadFiles {
371 + // max-height: 300px;
372 + // overflow-y: scroll;
366 .uploadFileList { 373 .uploadFileList {
367 height: 45px; 374 height: 45px;
368 display: flex; 375 display: flex;
...@@ -388,6 +395,7 @@ export default { ...@@ -388,6 +395,7 @@ export default {
388 } 395 }
389 } 396 }
390 } 397 }
398 + }
391 .fileBoxItemDisable { 399 .fileBoxItemDisable {
392 box-shadow: none; 400 box-shadow: none;
393 background-color: $formItemBackgroundColor !important; 401 background-color: $formItemBackgroundColor !important;
......