This commit is contained in:
liushuai
2020-03-14 09:21:10 +08:00
parent 39f0eb1525
commit fb25d5036c
5 changed files with 145 additions and 84 deletions

View File

@@ -38,7 +38,7 @@
{{ scope.row.客户名称 }}
</template>
</el-table-column>
<el-table-column align="center" label="付款方式" width="77">
<el-table-column align="center" label="付款方式" width="80">
<template slot-scope="scope">
{{ scope.row.付款方式 }}
</template>
@@ -48,6 +48,61 @@
{{ Number(scope.row.合同总金额).toFixed(2) }}
</template>
</el-table-column>
<el-table-column align="center" label="到账金额(万元)" width="124">
<template slot-scope="scope">
{{ Number(scope.row.已支付).toFixed(2) }}
</template>
</el-table-column>
<el-table-column align="center" label="开票金额(万元)" width="124">
<template slot-scope="scope">
{{ Number(scope.row.开票总额).toFixed(2) }}
</template>
</el-table-column>
<el-table-column align="center" label="合同未收款(万元)" width="135">
<template slot-scope="scope">
{{ Number(scope.row.合同总金额).toFixed(2) - Number(scope.row.已支付).toFixed(2) }}
</template>
</el-table-column>
<el-table-column align="center" label="投标保证金(万元)" width="135">
<template slot-scope="scope">
{{ Number(scope.row.投标保证金金额).toFixed(2) }}
</template>
</el-table-column>
<el-table-column align="center" label="未回投标金(万元)" width="135">
<template slot-scope="scope">
{{ Number(scope.row.未收投标保证金).toFixed(2) }}
</template>
</el-table-column>
<el-table-column align="center" label="项目履约金(万元)" width="135">
<template slot-scope="scope">
{{ Number(scope.row.履约保证金总额).toFixed(2) }}
</template>
</el-table-column>
<el-table-column align="center" label="未收履约金(万元)" width="135">
<template slot-scope="scope">
{{ Number(scope.row.履约保证金未收金额).toFixed(2) }}
</template>
</el-table-column>
<el-table-column align="center" label="项目安全金(万元)" width="135">
<template slot-scope="scope">
{{ Number(scope.row.安全保证金金额).toFixed(2) }}
</template>
</el-table-column>
<el-table-column align="center" label="扣款金额(万元)" width="124">
<template slot-scope="scope">
{{ Number(scope.row.安全保证金扣款金额).toFixed(2) }}
</template>
</el-table-column>
<el-table-column align="center" label="未收安全金(万元)" width="135">
<template slot-scope="scope">
{{ Number(scope.row.安全保证金未收金额).toFixed(2) }}
</template>
</el-table-column>
<el-table-column align="center" label="未收保证金合计(万元)" width="165">
<template slot-scope="scope">
{{ (Number(scope.row.未收投标保证金) + Number(scope.row.安全保证金未收金额) + Number(scope.row.履约保证金未收金额)).toFixed(2) }}
</template>
</el-table-column>
<!--<el-table-column align="center" label="已付(万元)" width="95">-->
<!--<template slot-scope="scope">-->
<!--{{ Number(scope.row.已支付).toFixed(2) }}-->
@@ -116,7 +171,7 @@
</el-table-column>
<el-table-column label="发货时间" align="center" width="90">
<template slot-scope="scope">
{{ scope.row.发出时间.split(' ')[2] + '/' + scope.row.发出时间.split(' ')[0] + '/' + scope.row.发出时间.split(' ')[1] }}
{{ scope.row.发出时间? scope.row.发出时间.split(' ')[2] + '/' + scope.row.发出时间.split(' ')[0] + '/' + scope.row.发出时间.split(' ')[1] : '-' }}
</template>
</el-table-column>
</el-table>