首页增加办公数据
This commit is contained in:
@@ -103,17 +103,17 @@
|
||||
</div>
|
||||
<div class="table-container">
|
||||
<el-table :data="orderProductStatistics" size="small" height="320" v-loading="!orderProductStatistics.length">
|
||||
<el-table-column prop="productName" label="产品名称" width="120" />
|
||||
<el-table-column prop="orderDemandQuantity" label="需求数量" width="80" />
|
||||
<el-table-column prop="currentStockQuantity" label="库存数量" width="80" />
|
||||
<el-table-column prop="stockGap" label="库存缺口" width="80">
|
||||
<el-table-column prop="productName" label="产品名称" />
|
||||
<el-table-column prop="orderDemandQuantity" label="需求数量" />
|
||||
<el-table-column prop="currentStockQuantity" label="库存数量" />
|
||||
<el-table-column prop="stockGap" label="库存缺口">
|
||||
<template slot-scope="scope">
|
||||
<span :class="getStockGapClass(scope.row.stockGap)">
|
||||
{{ scope.row.stockGap }}
|
||||
</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="relatedOrderCount" label="相关订单" width="80" />
|
||||
<el-table-column prop="relatedOrderCount" label="相关订单" />
|
||||
</el-table>
|
||||
<div v-if="!orderProductStatistics.length" class="empty-data">
|
||||
<i class="el-icon-warning-outline"></i>
|
||||
|
||||
Reference in New Issue
Block a user