yangfeng
2023-12-21 90020572d7922536f94df74bcee1ccc3393dd097
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
<template>
  <div class="snapFrame">
    <div class="top-title-box">
      <div class="common-view">人脸抓拍</div>
      <div class="common-view">车辆抓拍</div>
    </div>
  </div>
</template>
 
<script>
export default {
  components: {},
  props: {},
  data() {
    return {
      dataObj: {
        total: 256,
        disposeOf: 254,
        noDisposeOf: 2,
      },
    };
  },
  mounted() {},
  watch: {},
  methods: {},
};
</script>
 
<style scoped lang="scss">
.snapFrame {
  width: 100%;
  height: calc(100% - 40px);
  background: rgba(3, 10, 14, 0.7);
  border: 1px solid #194871;
  margin-top: 50px;
  position: relative;
  .top-title-box {
    height: 40px;
    width: calc(100% - 40px);
    position: absolute;
    top: -20px;
    left: 40px;
    display: flex;
    .common-view {
      width: 40%;
      height: 40px;
      line-height: 40px;
      text-align: center;
      margin-right: 45px;
      border: 1px solid #0e9cff;
      background: linear-gradient(to top, #00344b, #001d2f 60%);
      color: #01c2ff;
      font-size: 22px;
    }
  }
}
.commonColor {
  color: #fff;
}
.totalColor {
  color: #f0a205;
}
.carTotalfColor {
  color: #1dd4ff;
}
.commonVlueColor {
  color: #01c2ff;
}
</style>