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
| <template>
| <div class="history-module">
| <div class="title"></div>
| <div class="history-item"
| v-for="(item,index) in warnArr"
| :key="index">
| <warnDescription
| :warnDes="{code:item.code,
| time:item.time,
| warn:item.warn}"/>
| </div>
| </div>
| </template>
|
| <script>
| import warnDescription from '@/pages/internetEquipment/components/warnDescription'
| export default {
| props :{
| warnArr : {
| type: Array
| }
| },
| components :{
| warnDescription
| }
| }
| </script>
|
| <style scoped lang="scss">
| .history-module {
| width: 280px;
| height: 292px;
| background-color: #fff;
| box-shadow: 0px 2px 10px rgba(141, 164, 187, 0.25);
| border-radius: 15px;
| overflow-y: scroll;
| }
| </style>
|
|