|
@@ -31,17 +31,17 @@
|
|
|
<parentTable :data="pageData.records" slot="table" style="width: 100%;">
|
|
|
<el-table-column label="订单号" width="150" align="center">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.orderId }}</span>
|
|
|
+ <span>{{ row.assetsSimple.orderId }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="项目名称" width="150" align="center">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.name ? row.name : row.orderName }}</span>
|
|
|
+ <span>{{ row.assetsSimple.name ? row.assetsSimple.name : row.assetsSimple.orderName }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="报告号" width="200" align="center">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.reportNo ? row.reportNo : '--' }}</span>
|
|
|
+ <span>{{ row.assetsSimple.reportNo ? row.assetsSimple.reportNo : '--' }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="申报人" align="center">
|
|
@@ -143,7 +143,7 @@ export default {
|
|
|
},
|
|
|
|
|
|
getList() {
|
|
|
- this.$api.commissonDeclare.assetsCheckList(this.listQuery).then(res => {
|
|
|
+ this.$api.commissonDeclare.assetsCheckPage(this.listQuery).then(res => {
|
|
|
if (res.code === 200) {
|
|
|
this.pageData = res.data;
|
|
|
}
|