|
@@ -319,17 +319,17 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="订单号" align="center" width="150">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.orderId }}</span>
|
|
|
+ <span @contextmenu.prevent="$doCopy(row.orderId)">{{ row.orderId }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="价值意见书号" align="center" width="280" prop="statementNo">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.statementNo == null ? '--' : row.statementNo }}</span>
|
|
|
+ <span @contextmenu.prevent="$doCopy(row.statementNo)">{{ row.statementNo == null ? '--' : row.statementNo }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="报告号/复评函号" align="center" width="280" prop="reportNo">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.reportNo == null ? '--' : row.reportNo }}</span>
|
|
|
+ <span @contextmenu.prevent="$doCopy(row.reportNo)">{{ row.reportNo == null ? '--' : row.reportNo }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="评估对象类型" align="center" width="120">
|
|
@@ -390,7 +390,7 @@
|
|
|
style="width: 100%">
|
|
|
<el-table-column label="项目编号" align="center" width="140">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.orderId }}</span>
|
|
|
+ <span @contextmenu.prevent="$doCopy(row.orderId)">{{ row.orderId }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="坐落" align="center" width="200" show-overflow-tooltip>
|
|
@@ -526,7 +526,7 @@
|
|
|
:isBoard=450 style="width: 100%;">
|
|
|
<el-table-column label="项目编号" align="center" width="150">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.orderId }}</span>
|
|
|
+ <span @contextmenu.prevent="$doCopy(row.orderId)">{{ row.orderId }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="分单类型" align="center" width="150">
|
|
@@ -536,12 +536,12 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="意见书号" align="center" width="250">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.statementNo }}</span>
|
|
|
+ <span @contextmenu.prevent="$doCopy(row.statementNo)">{{ row.statementNo }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="报告号" align="center" width="250">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.reportNo }}</span>
|
|
|
+ <span @contextmenu.prevent="$doCopy(row.reportNo)">{{ row.reportNo }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="项目名称" align="center" width="250">
|