linwenxin hace 5 meses
padre
commit
6ad277224d
Se han modificado 1 ficheros con 12 adiciones y 0 borrados
  1. 12 0
      src/views/workOrder/workOrderPool/detailModule/Payment/index.vue

+ 12 - 0
src/views/workOrder/workOrderPool/detailModule/Payment/index.vue

@@ -342,24 +342,36 @@ export default {
                     columnAttributes: {
                       label: '费用名称',
                       prop: 'amountName'
+                    },
+                    render: (h, { row, column }) => {
+                      return <div>{this.toFixed(row[column.columnAttributes.prop])}</div>
                     }
                   },
                   {
                     columnAttributes: {
                       label: '费用金额',
                       prop: 'normAmount'
+                    },
+                    render: (h, { row, column }) => {
+                      return <div>{this.toFixed(row[column.columnAttributes.prop])}</div>
                     }
                   },
                   {
                     columnAttributes: {
                       label: '师傅分账金额',
                       prop: 'sffzje'
+                    },
+                    render: (h, { row, column }) => {
+                      return <div>{this.toFixed(row[column.columnAttributes.prop])}</div>
                     }
                   },
                   {
                     columnAttributes: {
                       label: '师傅手续费',
                       prop: 'sfsxf'
+                    },
+                    render: (h, { row, column }) => {
+                      return <div>{this.toFixed(row[column.columnAttributes.prop])}</div>
                     }
                   }
                 ]}