Browse Source

修改结算打印中实际结算总金额小数点保留2位

余思翰 10 months ago
parent
commit
f038827738
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      oa-ui/src/views/flowable/form/components/settlePrint.vue

+ 1
- 1
oa-ui/src/views/flowable/form/components/settlePrint.vue View File

@@ -79,7 +79,7 @@
79 79
         </tr>
80 80
         <tr>
81 81
           <td :colspan="4" class="header">实际结算总金额</td>
82
-          <td :colspan="6">{{ actualSumSettle }}</td>
82
+          <td :colspan="6">{{ actualSumSettle.toFixed(2) }}</td>
83 83
         </tr>
84 84
         <!-- 分页就加入样式 style="page-break-after: always;" -->
85 85
         <tr>

Loading…
Cancel
Save