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