noticeList.vue
1.7 KB
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
70
71
<!--
* @Date: 2023-07-10 17:40:46
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2023-07-10 17:54:36
* @FilePath: /map-demo/src/views/noticeList.vue
* @Description: 文件描述
-->
<template>
<div class="notice-list-page">
<div class="notice-item" style=" background: #FFFFFF; box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.05); border-radius: 10px;">
<p>
<span style="color: #777;">时间:</span>
<span style="color: #000;">2023-07-10 11:47:54</span>
</p>
<p>
<span style="color: #777;">类型:</span>
<span style="color: #000;">火警</span>
</p>
<p>
<span style="color: #777;">位置:</span>
<span style="color: #000;">老念佛堂(藏金阁、延寿堂、福慧堂)一层</span>
</p>
</div>
<div class="notice-item" style="background: #F6F6F6; box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.05); border-radius: 10px;">
<p>
<span style="color: #777;">时间:</span>
<span style="color: #000;">2023-07-10 11:47:54</span>
</p>
<p>
<span style="color: #777;">类型:</span>
<span style="color: #000;">火警</span>
</p>
<p>
<span style="color: #777;">位置:</span>
<span style="color: #000;">老念佛堂(藏金阁、延寿堂、福慧堂)一层</span>
</p>
</div>
</div>
</template>
<script>
export default {
data() {
return {
}
},
mounted() {
},
methods: {
}
}
</script>
<style lang="less" scoped>
.notice-list-page {
padding: 1rem;
background-color: #EBEBEB;
height: 100vh;
.notice-item {
padding: 1rem;
width: auto;
height: auto;
margin-bottom: 1rem;
}
}
</style>