<template>
|
<div class="chart-wrapper">
|
<div class="demo-form-inline">
|
<div class="haocai-title">库容实时使用情况</div>
|
<el-form :inline="true" :model="formData">
|
<el-form-item label="所属仓库">
|
<el-select v-model="formData.storageName" placeholder="请选择" class="w-200" @change="getData()">
|
<el-option v-for="item in storageNames" :key="item.storage_Id" :label="item.storageName" :value="item.storage_Id">
|
</el-option>
|
</el-select>
|
</el-form-item>
|
</el-form>
|
</div>
|
<div class="haocai-title"></div>
|
<template :gutter="10">
|
<el-table :data="tableData" style="width: 100%" max-height="400px">
|
<el-table-column prop="areaCode" label="库区" width="180">
|
</el-table-column>
|
<el-table-column prop="maxWeight" label="理论库容" width="180">
|
</el-table-column>
|
<el-table-column prop="positionNameCount" label="已使用货位">
|
</el-table-column>
|
<el-table-column prop="surplusositionName" label="剩余空货位">
|
</el-table-column>
|
<el-table-column prop="totalWeight" label="库存重量">
|
</el-table-column>
|
<el-table-column prop="productStorage" label="库存数量">
|
</el-table-column>
|
<el-table-column prop="depositRate" label="存活率">
|
</el-table-column>
|
</el-table>
|
</template>
|
</div>
|
</template>
|
|
<script>
|
import CountTo from "vue-count-to";
|
|
export default {
|
components: {
|
CountTo
|
},
|
data() {
|
return {
|
tableData: [],
|
formData: {
|
storage_Id: null, // 仓库id
|
storageName: null
|
},
|
// 仓库 列表
|
storageNames: null
|
};
|
},
|
mounted() {
|
this.getData();
|
this.getStorageList();
|
},
|
methods: {
|
getData() {
|
const storageName = null;
|
// const consignor_Id = null;
|
// for (var index in this.storageNames) {
|
// if (this.storageNames[index].storage_Id === this.formData.storage_Id) {
|
// storageName = this.storageNames[index].storageName;
|
// }
|
// }
|
const url = "/api/dashboard/wms/getStorageArea";
|
const params = {
|
storageName: storageName,
|
storage_Id: this.formData.storage_Id
|
};
|
var callback = res => {
|
if (res.result) {
|
this.tableData = res.data;
|
}
|
};
|
this.common.ajax(url, params, callback, true);
|
},
|
// 获取仓库
|
getStorageList() {
|
const url = "/api/basicInfo/base/storage/getList";
|
const params = {};
|
var callback = res => {
|
if (res.result) {
|
this.storageNames = res.data;
|
this.formData.storageName = res.data[0].storageName;
|
}
|
};
|
this.common.ajax(url, params, callback);
|
}
|
}
|
};
|
</script>
|
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
.chart-wrapper {
|
background: #fff;
|
padding: 16px 16px;
|
margin-bottom: 10px;
|
.haocai-title {
|
text-align: center;
|
color: #888;
|
font-size: 18px;
|
}
|
}
|
.panel-group {
|
margin-top: 5px;
|
.card-panel-col {
|
margin-bottom: 10px;
|
}
|
.card-panel {
|
height: 108px;
|
cursor: pointer;
|
font-size: 12px;
|
position: relative;
|
overflow: hidden;
|
color: #666;
|
background: #fff;
|
box-shadow: 4px 4px 40px rgba(0, 0, 0, 0.05);
|
border-color: rgba(0, 0, 0, 0.05);
|
border-radius: 4px;
|
border: 1px solid #e4e4e4;
|
&:hover {
|
.card-panel-icon-wrapper {
|
color: #fff;
|
}
|
.icon-people {
|
background: #40c9c6;
|
}
|
.icon-message {
|
background: #36a3f7;
|
}
|
.icon-money {
|
background: #f4516c;
|
}
|
.icon-shopping {
|
background: #34bfa3;
|
}
|
}
|
.icon-people {
|
color: #40c9c6;
|
}
|
.icon-message {
|
color: #36a3f7;
|
}
|
.icon-money {
|
color: #f4516c;
|
}
|
.icon-shopping {
|
color: #34bfa3;
|
}
|
.card-panel-icon-wrapper {
|
float: left;
|
margin: 14px 0 0 14px;
|
padding: 16px;
|
transition: all 0.38s ease-out;
|
border-radius: 6px;
|
}
|
.card-panel-icon {
|
float: left;
|
font-size: 48px;
|
}
|
.card-panel-description {
|
float: right;
|
font-weight: bold;
|
margin: 26px;
|
margin-left: 0px;
|
.card-panel-text {
|
line-height: 18px;
|
color: rgba(0, 0, 0, 0.45);
|
font-size: 16px;
|
margin-bottom: 12px;
|
}
|
.card-panel-num {
|
font-size: 20px;
|
}
|
}
|
}
|
}
|
</style>
|