whj 1 년 전
부모
커밋
a7ccfcfe82
1개의 변경된 파일8개의 추가작업 그리고 2개의 파일을 삭제
  1. 8 2
      src/views/purchase/purchase-order-page/modules/Detail.vue

+ 8 - 2
src/views/purchase/purchase-order-page/modules/Detail.vue

@@ -126,12 +126,18 @@ export default {
         {
           title: '税率',
           dataIndex: 'ipertaxrate',
-          width: 100
+          width: 100,
+          customRender: (text, record, index) => {
+            return text + '%'
+          }
         },
         {
           title: '价税合计',
           dataIndex: 'iorisum',
-          width: 100
+          width: 100,
+          customRender: (text, record, index) => {
+            return text.toFixed(2)
+          }
         },
         {
           title: '采购状态',