Explorar el Código

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

余思翰 hace 11 meses
padre
commit
f038827738
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      oa-ui/src/views/flowable/form/components/settlePrint.vue

+ 1
- 1
oa-ui/src/views/flowable/form/components/settlePrint.vue Ver fichero

@@ -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…
Cancelar
Guardar