Browse Source

提交代码

陈少旭 1 year ago
parent
commit
19c57dd614
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/xt_pages/outpatientCharges/summary.vue

+ 2 - 2
src/xt_pages/outpatientCharges/summary.vue View File

@@ -549,9 +549,9 @@
549 549
                 </tr>
550 550
                 <tr>
551 551
                   <td>起始单号:</td>
552
-                  <td>{{tableData2[0].number}}</td>
552
+                  <td>{{tableData2.length > 0&&tableData2[0].number}}</td>
553 553
                   <td>终止单号:</td>
554
-                  <td>{{tableData2[tableData2.length-1].number}}</td>
554
+                  <td>{{tableData2.length > 0&&tableData2[tableData2.length-1].number}}</td>
555 555
                   <td>缴款人员:</td>
556 556
                   <td>{{staff}}</td>
557 557
                 </tr>