This commit is contained in:
bryan sun
2019-10-17 19:30:46 +08:00
parent 1989b23ce9
commit 98c67d3822
27 changed files with 128 additions and 122 deletions

View File

@@ -46,27 +46,27 @@
</el-card>
<el-card>
<el-table :data="tableData1" border stripe size="mini" highlight-current-row style="width: 100%;margin-top: 3px" height="550px">
<el-table-column label="项目名称" align="center">
<el-table-column label="项目名称" sortable prop="项目名称" align="center">
<template slot-scope="scope">
{{ scope.row.项目名称 }}
</template>
</el-table-column>
<el-table-column label="机床图号" align="center">
<el-table-column label="机床图号" sortable prop="机床图号" align="center">
<template slot-scope="scope">
{{ scope.row.机床图号 }}
</template>
</el-table-column>
<el-table-column label="零件图号" align="center">
<el-table-column label="零件图号" sortable prop="零件图号" align="center">
<template slot-scope="scope">
{{ scope.row.零件图号 }}
</template>
</el-table-column>
<el-table-column label="零件名称" align="center">
<el-table-column label="零件名称" sortable prop="零件名称" align="center">
<template slot-scope="scope">
{{ scope.row.零件名称 }}
</template>
</el-table-column>
<el-table-column label="出库时间" align="center">
<el-table-column label="出库时间" sortable prop="出库时间" align="center">
<template slot-scope="scope">
{{ scope.row.出库时间 }}
</template>