|
@@ -17,12 +17,12 @@
|
|
|
<parentTable ref="table" v-loading="listLoading" :data="pageData.records" slot="table" style="width: 100%;" @headerClick="switchHeader">
|
|
|
<el-table-column label="项目编号" align="center" width="150" v-if="!hiddenLabels.includes('orderId')" prop="orderId" >
|
|
|
<template slot-scope="{row}">
|
|
|
- <span class="enableClick" @click="orderDetail(row)">{{ row.orderId }}</span>
|
|
|
+ <span class="enableClick" @click="toDetail(row)">{{ row.orderId }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="坐落" align="center" width="300" v-if="!hiddenLabels.includes('location')" prop="location">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span class="enableClick" @click="orderDetail(row)">{{ row.location }}</span>
|
|
|
+ <span class="enableClick" @click="toDetail(row)">{{ row.location }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="当前节点" align="center" width="130" v-if="!hiddenLabels.includes('currentNodeName')" prop="currentNodeName">
|
|
@@ -35,11 +35,6 @@
|
|
|
<span>{{ row.handlerName }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="最新备注" align="center" width="150" v-if="!hiddenLabels.includes('comments')" prop="comments">
|
|
|
- <template slot-scope="{row}">
|
|
|
- <span>{{ row.comments?row.comments:'-' }}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
<el-table-column label="面积" align="center" width="130" v-if="!hiddenLabels.includes('acreage')" prop="acreage">
|
|
|
<template slot-scope="{row}">
|
|
|
<span>{{ row.acreage? row.acreage: '-' }}</span>
|
|
@@ -120,6 +115,11 @@
|
|
|
{{ row.nodeCreated }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="最新备注" align="center" width="150" v-if="!hiddenLabels.includes('comments')" prop="comments">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span>{{ row.comments?row.comments:'-' }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="操作" align="center" width="140" fixed="right">
|
|
|
<template slot-scope="{row}">
|
|
|
<el-button type="text" @click="toDetail(row)">办理</el-button>
|