Commit 44f472e9 by ningjihai

入库管理

parent 91cac91b
...@@ -119,8 +119,8 @@ ...@@ -119,8 +119,8 @@
> >
<el-table-column type="selection" width="55" align="center" fixed /> <el-table-column type="selection" width="55" align="center" fixed />
<el-table-column label="入库单号" align="center" prop="orderId" /> <el-table-column label="入库单号" align="center" prop="orderId" />
<el-table-column label="系统编号" align="center" prop="systemNo" /> <el-table-column label="系统编号" align="center" prop="systemNo" width="200"/>
<el-table-column label="入库类型" align="center" prop="orderTypeId" :show-overflow-tooltip="true"> <el-table-column label="入库类型" align="center" prop="orderTypeId" :show-overflow-tooltip="true" width="200">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag type="success" size="small"> <el-tag type="success" size="small">
{{ getInBoundTypeName(scope.row.orderTypeId) }} {{ getInBoundTypeName(scope.row.orderTypeId) }}
...@@ -128,23 +128,23 @@ ...@@ -128,23 +128,23 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="订单类型" align="center" prop="orderType" :show-overflow-tooltip="true"> <el-table-column label="订单类型" align="center" prop="orderType" :show-overflow-tooltip="true" width="200">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag type="success" size="small"> <el-tag type="success" size="small">
{{ getOrderTypeName(scope.row.orderType) }} {{ getOrderTypeName(scope.row.orderType) }}
</el-tag> </el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="批次ID" align="center" prop="batchId" /> <el-table-column label="批次ID" align="center" prop="batchId" width="200"/>
<el-table-column label="入库单状态" align="center" prop="orderStatus"> <el-table-column label="入库单状态" align="center" prop="orderStatus" width="200">
<!-- 状态显示 --> <!-- 状态显示 -->
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag :type="getStatusType(scope.row.orderStatus)" size="small"> <el-tag :type="getStatusType(scope.row.orderStatus)" size="small" width="200">
{{ getStatusName(scope.row.orderStatus) }} {{ getStatusName(scope.row.orderStatus) }}
</el-tag> </el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="创建时间" align="center" prop="createTime" width="150"> <el-table-column label="创建时间" align="center" prop="createTime" width="200">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ parseTime(scope.row.createTime) }}</span> <span>{{ parseTime(scope.row.createTime) }}</span>
</template> </template>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论