曹睿
2025-04-25 ec1bef3a37e8dcdf22f1bf52e7c272a18306f4b9
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
<template>
  <view class="statistics_box">
    <wd-row>
      <wd-col :span="12">
        <view class="h_48 px-4 flex items-center">
          <view class="icon_box">
            <wd-icon name="computer" size="12px"></wd-icon>
          </view>
          <text class="text-sm text-[#232A64] ml-2">总生产数</text>
          <text class="text-lg text-[#339599] ml-2 font-semibold">987</text>
        </view>
      </wd-col>
      <wd-col :span="12">
        <view class="h_48 px-4 flex items-center">
          <view class="icon_box">
            <wd-icon name="computer" size="12px"></wd-icon>
          </view>
          <text class="text-sm text-[#232A64] ml-2">总生产比</text>
          <text class="text-lg text-[#339599] ml-2 font-semibold">87%</text>
        </view>
      </wd-col>
    </wd-row>
  </view>
</template>
<style scoped lang="scss">
.statistics_box {
  background: #f6faf9;
  border-radius: 8px 8px 8px 8px;
}
.icon_box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(18, 162, 154, 0.1412);
  border-radius: 50%;
  color: #339599;
}
.h_48 {
  height: 48px;
}
</style>