333
schangxiang@126.com
2025-09-19 18966e02fb573c7e2bb0c6426ed792b38b910940
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<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>