|
@@ -108,7 +108,11 @@
|
|
|
<el-table-column prop="poolUpdateTime" align="center" label="发放时间" width="160"></el-table-column>
|
|
|
<el-table-column prop="orderBaseId" align="center" label="工单单号" width="220">
|
|
|
<template slot-scope="scope">
|
|
|
- <div style="display: flex; text-align: left" @click="copy(scope.row.orderBaseId)">
|
|
|
+ <div
|
|
|
+ v-if="scope.row.orderBaseId"
|
|
|
+ style="display: flex; text-align: left"
|
|
|
+ @click="copy(scope.row.orderBaseId)"
|
|
|
+ >
|
|
|
<el-button type="text">{{ scope.row.orderBaseId }}</el-button>
|
|
|
<el-button type="text" style="margin-left: 10px">复制</el-button>
|
|
|
</div>
|