|
@@ -10,30 +10,29 @@
|
|
|
:size="'mini'"
|
|
|
style="width: 100%"
|
|
|
>
|
|
|
- <el-table-column prop="itemName" label="部门" fixed="left" min-width="120">
|
|
|
+ <el-table-column prop="itemName" label="部门" fixed="left" min-width="120">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="sale_price" label="价格(元)" min-width="120">
|
|
|
+ <el-table-column prop="sale_price" label="价格(元)" min-width="120">
|
|
|
</el-table-column>
|
|
|
-
|
|
|
|
|
|
- <el-table-column show-overflow-tooltip label="备库数量" min-width="120">
|
|
|
+ <el-table-column show-overflow-tooltip label="备库数量" min-width="60">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.num | toThousandFilter }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
-
|
|
|
<el-table-column show-overflow-tooltip label="金额(万元)" min-width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.total | toThousandFilter }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column show-overflow-tooltip label="剩余库存数量" min-width="120">
|
|
|
+ <el-table-column show-overflow-tooltip label="剩余库存数量" min-width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.usable_stock | toThousandFilter }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
-
|
|
|
+ <el-table-column show-overflow-tooltip prop="good_code" label="商品编号" fixed="left" min-width="160" />
|
|
|
+ <el-table-column show-overflow-tooltip prop="good_name" label="商品名称" fixed="left" min-width="120" />
|
|
|
</el-table>
|
|
|
</div>
|
|
|
</template>
|