1
This commit is contained in:
@@ -45,7 +45,22 @@
|
||||
<el-table-column label="ID" prop="id" width="80" />
|
||||
<el-table-column label="内部单号" prop="remark" width="160" sortable/>
|
||||
|
||||
<el-table-column label="订单号" prop="orderId" width="160"/>
|
||||
<el-table-column label="订单号" prop="orderId" width="200">
|
||||
<template slot-scope="scope">
|
||||
<div>
|
||||
<span style="margin-right: 8px;">{{ scope.row.orderId }}</span>
|
||||
<el-button
|
||||
type="text"
|
||||
size="mini"
|
||||
icon="el-icon-copy-document"
|
||||
@click="copyToClipboard(scope.row.orderId)"
|
||||
title="复制订单号"
|
||||
>
|
||||
复制
|
||||
</el-button>
|
||||
</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="标记" prop="distributionMark" width="80"/>
|
||||
<el-table-column label="型号" prop="modelNumber" width="180"/>
|
||||
<el-table-column label="地址" prop="address" min-width="280" show-overflow-tooltip/>
|
||||
@@ -234,6 +249,7 @@ export default {
|
||||
|
||||
document.body.removeChild(textArea)
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user