This commit is contained in:
Vergil
2020-05-07 15:10:46 +08:00
parent 29ea4df094
commit 3a1f9164fa

View File

@@ -11,6 +11,11 @@
</el-card> </el-card>
<el-card> <el-card>
<el-table v-loading="loading" :data="tableData" border stripe size="mini" height="650" style="width: 1350px"> <el-table v-loading="loading" :data="tableData" border stripe size="mini" height="650" style="width: 1350px">
<el-table-column label="进程" align="center" width="120px">
<template slot-scope="scope">
{{ scope.row.状态 }}
</template>
</el-table-column>
<el-table-column label="名称" align="center" width="120px"> <el-table-column label="名称" align="center" width="120px">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.名称 }} {{ scope.row.名称 }}
@@ -36,6 +41,11 @@
{{ scope.row.数量 }} {{ scope.row.数量 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="用库存数" align="center" width="80">
<template slot-scope="scope">
{{ scope.row.使用库存数 }}
</template>
</el-table-column>
<el-table-column label="到货数量" align="center" width="80"> <el-table-column label="到货数量" align="center" width="80">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.到货数量 }} {{ scope.row.到货数量 }}
@@ -63,7 +73,7 @@
</el-table-column> </el-table-column>
<el-table-column label="采购日期" align="center" width="90"> <el-table-column label="采购日期" align="center" width="90">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.创建日期 }} {{ scope.row.提交日期 }}
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>