|
@@ -304,6 +304,22 @@
|
|
|
{{ scope.row.orderTime | dateToDayFilter }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ align="left"
|
|
|
+ label="工程登录编号"
|
|
|
+ prop="refEnginRecordNo"
|
|
|
+ min-width="160"
|
|
|
+ show-overflow-tooltip
|
|
|
+ >
|
|
|
+ <template v-if="scope.row" slot-scope="scope">
|
|
|
+ <CopyButton
|
|
|
+ :copy-text="scope.row.refEnginRecordNo"
|
|
|
+ />
|
|
|
+ <span>{{
|
|
|
+ scope.row.refEnginRecordNo
|
|
|
+ }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column align="left" label="销售订单号" min-width="160" show-overflow-tooltip>
|
|
|
<template v-if="scope.row" slot-scope="scope">
|
|
|
<CopyButton
|