|
|
|
|
@ -66,9 +66,9 @@
|
|
|
|
|
<el-table-column label="情况说明" width="120" align="center">
|
|
|
|
|
<template #default>-</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="状态" width="80" align="center">
|
|
|
|
|
<el-table-column label="状态" min-width="120" align="center" show-overflow-tooltip>
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<dict-tag :options="project_status" :value="scope.row.projectStatus" />
|
|
|
|
|
{{ scope.row.projectProgressStatus || '-' }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="预计验收时间" width="120" align="center">
|
|
|
|
|
@ -91,22 +91,31 @@
|
|
|
|
|
|
|
|
|
|
<!-- ========== 合同信息 ========== -->
|
|
|
|
|
<el-table-column label="合同信息" align="center">
|
|
|
|
|
<el-table-column label="签订时间" width="110" align="center">
|
|
|
|
|
<el-table-column label="签订时间" min-width="110" align="center">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
{{ scope.row.contractDate ? scope.row.contractDate.substring(0, 10) : '-' }}
|
|
|
|
|
<span style="white-space: pre-line">{{ scope.row.contractDate || '-' }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="合同额" width="120" align="center">
|
|
|
|
|
<el-table-column label="合同额" min-width="120" align="center">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
{{ scope.row.contractAmount != null ? formatNumber(scope.row.contractAmount) : '-' }}
|
|
|
|
|
<span style="white-space: pre-line">{{ scope.row.contractAmount != null ? scope.row.contractAmount : '-' }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="客户经理" width="90" align="center">
|
|
|
|
|
<el-table-column label="客户经理" min-width="90" align="center">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
{{ scope.row.contractManagerName || '-' }}
|
|
|
|
|
<span style="white-space: pre-line">{{ scope.row.contractManagerName || '-' }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="付款方式" min-width="220" align="center" show-overflow-tooltip>
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<span style="white-space: pre-line">{{ scope.row.paymentMethod || '-' }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="质保期描述" min-width="150" align="center" show-overflow-tooltip>
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<span style="white-space: pre-line">{{ scope.row.warrantyPeriodDescription || '-' }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="付款方式" prop="paymentMethod" width="110" align="center" show-overflow-tooltip />
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<!-- ========== 预算及成本 ========== -->
|
|
|
|
|
|