This commit is contained in:
liushuai
2020-03-12 22:20:08 +08:00
parent 296df85e78
commit 1a3012d5a6
17 changed files with 406 additions and 420 deletions

View File

@@ -24,22 +24,22 @@
<el-card style="width: 49.5%; float: left">
<el-table v-loading="listLoading1" :data="tableData1" stripe size="mini" style="width: 100%" highlight-current-row border height="730">
<el-table-column align="center" label="零件名称" prop="零件名称" width="150px">
<el-table-column align="center" label="零件名称" prop="零件名称" width="110px">
<template slot-scope="scope">
{{ scope.row.零件名称 }}
</template>
</el-table-column>
<el-table-column align="center" label="零件图号" prop="零件图号" min-width="150px">
<el-table-column align="center" label="零件图号" prop="零件图号" min-width="120px">
<template slot-scope="scope">
{{ scope.row.零件图号 }}
</template>
</el-table-column>
<el-table-column align="center" label="入库数" width="70px">
<el-table-column align="center" label="入库数" width="65px">
<template slot-scope="scope">
{{ scope.row.入库数量 }}
</template>
</el-table-column>
<el-table-column align="center" label="机床图号" prop="机床图号" width="120px">
<el-table-column align="center" label="机床图号" prop="机床图号" width="90px">
<template slot-scope="scope">
{{ scope.row.机床图号 }}
</template>
@@ -49,12 +49,12 @@
{{ scope.row.组号 }}
</template>
</el-table-column>
<el-table-column align="center" label="货位名称" prop="货位名称" width="100px">
<el-table-column align="center" label="货位名称" prop="货位名称" width="80px">
<template slot-scope="scope">
{{ scope.row.货位名称 }}
</template>
</el-table-column>
<el-table-column align="center" label="入库时间" prop="入库时间" width="100px">
<el-table-column align="center" label="入库时间" prop="入库时间" width="90px">
<template slot-scope="scope">
{{ scope.row.入库时间 ? scope.row.入库时间.split(' ')[0] : '-' }}
</template>