소스 검색

Merge branch '20201109_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20201109_pc_vue_new_branch

XMLWAN 3 년 전
부모
커밋
2632e10e69
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/xt_pages/outpatientCharges/invoiceTemplate/printFive.vue

+ 2 - 0
src/xt_pages/outpatientCharges/invoiceTemplate/printFive.vue 파일 보기

@@ -125,7 +125,9 @@ export default {
125 125
                 var month =data.getMonth() < 9 ? "0" + (data.getMonth() + 1) : data.getMonth() + 1;
126 126
                 var date = data.getDate() <= 9 ? "0" + data.getDate() : data.getDate();
127 127
                 this.printDate = data.getFullYear() + "-" + month + "-" + date;
128
+                this.pageArr = []
128 129
                 this.getPage()
130
+                console.log('pageArr',this.pageArr)
129 131
             })
130 132
         },
131 133
         smalltoBIG(n) {