|
@@ -13,7 +13,7 @@
|
|
<span>{{ row.location }}</span>
|
|
<span>{{ row.location }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="项目编号" align="center" width="140" >
|
|
|
|
|
|
+ <el-table-column label="项目编号" align="center" width="150" >
|
|
<template slot-scope="{row}">
|
|
<template slot-scope="{row}">
|
|
<span>{{ row.orderId }}</span>
|
|
<span>{{ row.orderId }}</span>
|
|
</template>
|
|
</template>
|
|
@@ -30,17 +30,17 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="面积" align="center" width="130">
|
|
<el-table-column label="面积" align="center" width="130">
|
|
<template slot-scope="{row}">
|
|
<template slot-scope="{row}">
|
|
- <span>{{ row.acreage }}</span>
|
|
|
|
|
|
+ <span>{{ row.acreage? row.acreage: '-' }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="单价" align="center" width="130">
|
|
<el-table-column label="单价" align="center" width="130">
|
|
<template slot-scope="{row}">
|
|
<template slot-scope="{row}">
|
|
- <span>{{ row.price }}</span>
|
|
|
|
|
|
+ <span>{{ row.price? row.price: '-' }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="总价" align="center" width="130">
|
|
<el-table-column label="总价" align="center" width="130">
|
|
<template slot-scope="{row}">
|
|
<template slot-scope="{row}">
|
|
- <span>{{ row.amount }}</span>
|
|
|
|
|
|
+ <span>{{ row.amount? row.amount: '-' }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="客户名称" align="center" width="130">
|
|
<el-table-column label="客户名称" align="center" width="130">
|
|
@@ -85,7 +85,7 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="实勘人" align="center" width="130">
|
|
<el-table-column label="实勘人" align="center" width="130">
|
|
<template slot-scope="{row}">
|
|
<template slot-scope="{row}">
|
|
- <span>{{ row.outwardStaffName }}</span>
|
|
|
|
|
|
+ <span>{{ row.outwardStaffName? row.outwardStaffName: '-' }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="内业人员" align="center" width="130">
|
|
<el-table-column label="内业人员" align="center" width="130">
|