|
@@ -172,8 +172,8 @@ export default {
|
|
},
|
|
},
|
|
render: (h, { row, column, index }) => {
|
|
render: (h, { row, column, index }) => {
|
|
return (
|
|
return (
|
|
- <div>
|
|
|
|
- {row.materialName}
|
|
|
|
|
|
+ <div style="display:flex;justify-content: space-between;align-items: center;">
|
|
|
|
+ <div> {row.materialName}</div>
|
|
<CopyButton copyText={row.materialName} />
|
|
<CopyButton copyText={row.materialName} />
|
|
</div>
|
|
</div>
|
|
)
|
|
)
|
|
@@ -186,8 +186,8 @@ export default {
|
|
},
|
|
},
|
|
render: (h, { row, column, index }) => {
|
|
render: (h, { row, column, index }) => {
|
|
return (
|
|
return (
|
|
- <div>
|
|
|
|
- {row.specification}
|
|
|
|
|
|
+ <div style="display:flex;justify-content: space-between;align-items: center;">
|
|
|
|
+ <div> {row.specification}</div>
|
|
<CopyButton copyText={row.specification} />
|
|
<CopyButton copyText={row.specification} />
|
|
</div>
|
|
</div>
|
|
)
|
|
)
|
|
@@ -202,14 +202,16 @@ export default {
|
|
return (
|
|
return (
|
|
<div>
|
|
<div>
|
|
<el-input
|
|
<el-input
|
|
- style="padding: 5px;"
|
|
|
|
|
|
+ style="padding: 5px;width:90%"
|
|
value={row.itemRemark}
|
|
value={row.itemRemark}
|
|
onInput={e => (row.itemRemark = e)}
|
|
onInput={e => (row.itemRemark = e)}
|
|
placeholder="请输入备注"
|
|
placeholder="请输入备注"
|
|
size="mini"
|
|
size="mini"
|
|
clearable
|
|
clearable
|
|
- ></el-input>
|
|
|
|
|
|
+ >
|
|
|
|
+ </el-input>
|
|
<CopyButton copyText={row.itemRemark} />
|
|
<CopyButton copyText={row.itemRemark} />
|
|
|
|
+
|
|
</div>
|
|
</div>
|
|
)
|
|
)
|
|
}
|
|
}
|