小数
This commit is contained in:
@@ -187,19 +187,19 @@
|
|||||||
{{ scope.row.付款方式 }}
|
{{ scope.row.付款方式 }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column align="center" label="合同总金额(元)" width="150">
|
<el-table-column align="center" label="合同总金额(万元)" width="150">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ scope.row.合同总金额 }}
|
{{ scope.row.合同总金额.toFixed(2) }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column align="center" label="已到账金额(元)" width="150">
|
<el-table-column align="center" label="已到账金额(万元)" width="150">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ scope.row.已支付 }}
|
{{ scope.row.已支付.toFixed(2) }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column align="center" label="未到账金额(元)" width="150">
|
<el-table-column align="center" label="未到账金额(万元)" width="150">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-tag size="small" style="width: 100px" type="warning">{{ scope.row.未支付金额 }}</el-tag>
|
<el-tag size="small" style="width: 100px" type="warning">{{ scope.row.未支付金额.toFixed(2) }}</el-tag>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column align="center" label="付款进度" width="150">
|
<el-table-column align="center" label="付款进度" width="150">
|
||||||
|
|||||||
Reference in New Issue
Block a user