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
<template>
  <div class="keyPersonnelManage">
    <div class="label-box">重点人员管理</div>
  </div>
</template>
 
<script>
export default {
  components: {},
  props: {},
  data() {
    return {
      dataObj: {
        total: 256,
        disposeOf: 254,
        noDisposeOf: 2,
      },
      src: "/chongqingPublicSecurity/left-top-bg.png",
    };
  },
  mounted() {},
  watch: {},
  methods: {},
};
</script>
 
<style scoped lang="scss">
.keyPersonnelManage {
  width: 100%;
  height: calc(100% - 30px);
  margin-top: 35px;
  background: rgba(3, 10, 14, 0.7);
  border: 1px solid #194871;
  .label-box {
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
    font-size: 20px;
    color: #01c2ff;
    background: #20426a;
  }
}
</style>