wanshenmean
15 小时以前 f288ccc545f8cc32bc922c96dfb3cab9a1f92ec6
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
<template>
  <div class="dashboard">
    <h1>欢迎使用WMS管理系统</h1>
    <el-row :gutter="20">
      <el-col :span="6">
        <el-card>
          <template #header>总库存</template>
          <div class="stat-value">10,000</div>
        </el-card>
      </el-col>
      <el-col :span="6">
        <el-card>
          <template #header>今日入库</template>
          <div class="stat-value">150</div>
        </el-card>
      </el-col>
      <el-col :span="6">
        <el-card>
          <template #header>今日出库</template>
          <div class="stat-value">120</div>
        </el-card>
      </el-col>
      <el-col :span="6">
        <el-card>
          <template #header>待处理任务</template>
          <div class="stat-value">25</div>
        </el-card>
      </el-col>
    </el-row>
  </div>
</template>
 
<script setup lang="ts">
</script>
 
<style scoped>
.dashboard h1 {
  margin-bottom: 20px;
  color: #333;
}
.stat-value {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #409eff;
}
</style>