This commit is contained in:
jiangfuzhuang
2020-02-06 11:46:54 +08:00
parent be1132346e
commit aed3f2c83e

View File

@@ -113,7 +113,7 @@
{{ scope.row.零件名称 }} {{ scope.row.零件名称 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="规格" prop="规格" align="center"> <el-table-column label="规格" prop="规格" align="center" width="170">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.规格 }} {{ scope.row.规格 }}
</template> </template>
@@ -148,17 +148,19 @@
{{ scope.row.零件类型名称 }} {{ scope.row.零件类型名称 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作" width="200px" fixed="right" align="center"> <el-table-column label="操作" width="170px" fixed="right" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
:disabled="checked_hebing" :disabled="checked_hebing"
size="mini" size="mini"
type="primary" type="primary"
style="padding: 4px 8px"
plain plain
@click="handleEdit(scope.$index, scope.row, 'form')">分批投产</el-button> @click="handleEdit(scope.$index, scope.row, 'form')">分批投产</el-button>
<el-button <el-button
size="mini" size="mini"
type="primary" type="primary"
style="padding: 4px 8px"
plain plain
@click="handleEditNumber(scope.$index, scope.row)">更改数量</el-button> @click="handleEditNumber(scope.$index, scope.row)">更改数量</el-button>
</template> </template>