|
|
@@ -24,13 +24,13 @@
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
- <el-table-column label="编码" type="code" >
|
|
|
+ <el-table-column label="编码" type="code" minWidth="110" >
|
|
|
<template slot-scope="{ row, $index }">
|
|
|
{{ row.code}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
- <el-table-column label="名称" type="name" >
|
|
|
+ <el-table-column label="名称" type="name" minWidth="110">
|
|
|
<template slot-scope="{ row, $index }">
|
|
|
{{ row.name}}
|
|
|
</template>
|
|
|
@@ -110,7 +110,7 @@
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
- <el-table-column v-if="singleReport == 1" label="炉次号" width="110" type="heatNumber" >
|
|
|
+ <el-table-column v-if="singleReport == 1" label="炉次号" width="90" type="heatNumber" >
|
|
|
<template slot-scope="{ row, $index }">
|
|
|
<el-input
|
|
|
size="mini"
|
|
|
@@ -120,7 +120,7 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
- <el-table-column v-if="singleReport == 1" label="数量" width="110" type="feedQuantity" >
|
|
|
+ <el-table-column v-if="singleReport == 1" label="数量" width="90" type="feedQuantity" >
|
|
|
<template slot-scope="{ row, $index }">
|
|
|
<el-input
|
|
|
size="mini"
|
|
|
@@ -137,6 +137,13 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
+ <el-table-column label="操作" fixed="right" width="60px">
|
|
|
+ <template slot-scope="{ $index, row }">
|
|
|
+ <el-link type="danger" @click="getDelete($index)"
|
|
|
+ >删除</el-link
|
|
|
+ >
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
|
|
|
|
|
|
|