|
@@ -105,6 +105,26 @@
|
|
|
<el-table-column prop="contractBalance" align="center" label="合同余额" width="120">
|
|
|
<template #default="scope">{{ scope.row.contractBalance ?? 0 }}</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column prop="contractApplyAmount" align="center" label="分包额" width="120">
|
|
|
+ <template #default="scope">{{ scope.row.contractApplyAmount ?? 0 }}</template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="applyPayAmount" align="center" label="已支付" width="120">
|
|
|
+ <template #default="scope">{{ scope.row.applyPayAmount ?? 0 }}</template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="qualityMoney" align="center" label="质保金" width="120">
|
|
|
+ <template #default="scope">{{ scope.row.qualityMoney ?? 0 }}</template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="qualityMoneyStatus" align="center" label="质保金状态" width="120">
|
|
|
+ <template #default="scope">
|
|
|
+ {{
|
|
|
+ scope.row.qualityMoneyStatus
|
|
|
+ ? scope.row.qualityMoneyStatus === 1
|
|
|
+ ? '已核销'
|
|
|
+ : '未核销'
|
|
|
+ : ''
|
|
|
+ }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="projectCost" align="center" label="项目总成本" width="120">
|
|
|
<template #default="scope">{{ scope.row.projectCost ?? 0 }}</template>
|
|
|
</el-table-column>
|