This commit is contained in:
liushuai
2020-06-01 17:47:46 +08:00
parent 034436b307
commit d30a808bc9
13 changed files with 1145 additions and 81 deletions

View File

@@ -52,19 +52,30 @@
<el-table-column
label="序号"
align="center"
fixed="left"
type="index"
width="50"/>
<el-table-column
label="机床图号"
align="center"
prop="机床图号"
fixed="left"
min-width="150px">
<template slot-scope="scope">{{ scope.row.机床图号 }}</template>
</el-table-column>
<el-table-column
label="组号"
align="center"
prop="组号"
fixed="left"
min-width="80px">
<template slot-scope="scope">{{ scope.row.组号 }}</template>
</el-table-column>
<el-table-column
label="零件图号"
align="center"
prop="零件图号"
fixed="left"
min-width="200px">
<template slot-scope="scope">{{ scope.row.零件图号 }}</template>
</el-table-column>
@@ -73,16 +84,10 @@
align="center"
prop="零件名称"
min-width="140px"
fixed="left"
show-overflow-tooltip>
<template slot-scope="scope">{{ scope.row.零件名称 }}</template>
</el-table-column>
<el-table-column
label="组号"
align="center"
prop="组号"
min-width="80px">
<template slot-scope="scope">{{ scope.row.组号 }}</template>
</el-table-column>
<el-table-column
label="零件数量"
width="80"
@@ -179,17 +184,17 @@
</div>
<el-table v-loading="loadingWB" :data="tableDataWB" style="width: 100%;min-height: 600px;" size="mini" stripe height="500" highlight-current-row border>
<el-table-column label="序号" align="center" type="index" width="50"/>
<el-table-column align="center" prop="物料名称" label="物料名称">
<el-table-column align="center" prop="物料名称" fixed="left" label="物料名称">
<template slot-scope="scope">
{{ scope.row.物料名称 }}
</template>
</el-table-column>
<el-table-column align="center" prop="物料规格" label="物料规格">
<el-table-column align="center" prop="物料规格" fixed="left" label="物料规格">
<template slot-scope="scope">
{{ scope.row.物料规格 }}
</template>
</el-table-column>
<el-table-column align="center" prop="物料型号" label="物料型号">
<el-table-column align="center" prop="物料型号" fixed="left" label="物料型号">
<template slot-scope="scope">
{{ scope.row.物料型号 }}
</template>