lxf 1 week ago
parent
commit
322c7de405
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/views/finance/fundManage/accountStatement/index.vue

+ 1 - 1
src/views/finance/fundManage/accountStatement/index.vue

@@ -270,7 +270,7 @@
     <el-dialog title="打印" v-if="openMorePrint" v-model="openMorePrint" width="860">
       <div id="printMe">
         <div id="pdfDom" style="padding: 16px; font-size: 12px !important; font-family: 'msyh'">
-          <div v-for="(item, index) in checkList" :key="index">
+          <div v-for="(item, index) in checkList.filter((item, index) => checkList.indexOf(item) === index)" :key="index">
             <ContractPDF :rowData="{ code: item }"></ContractPDF>
           </div>
         </div>