File tree 1 file changed +8
-12
lines changed
frontend/src/components/administration
1 file changed +8
-12
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
2
<links-page >
3
3
<card title =" Minutes of IFC Meeting" >
4
- <ul class =" list-group list-gr" >
5
- <li v-for =" i in ifc_docs" >
6
- <a class =" list-group-item" :href =" i.file" target =_blank >{{ i.title }}</a >
7
- </li >
8
- </ul >
4
+ <notice-list :noticelist =" ifc_docs" />
9
5
</card >
10
6
<card title =" Minutes of BWC Meeting" >
11
- <ul class =" list-group list-gr" >
12
- <li v-for =" b in bwc_docs" >
13
- <a class =" list-group-item" :href =" b.file" target =_blank >{{ b.title }}</a >
14
- </li >
15
- </ul >
7
+ <notice-list :noticelist =" bwc_docs" />
16
8
</card >
17
9
</links-page >
18
10
</template >
21
13
import axios from ' axios'
22
14
import LinksPage from ' @/components/LinksPage'
23
15
import Card from ' @/components/Card'
16
+ import NoticeList from ' @/components/NoticeList'
24
17
import { genBackendURL } from ' @/common.js'
25
18
26
19
export default {
27
20
name: " Calendar" ,
28
21
data () {
29
22
return {
30
23
bwc_docs: [],
31
- ifc_docs: []
24
+ paginate: [' bwc_docs' ],
25
+ ifc_docs: [],
26
+ paginate: [' ifc_docs' ]
32
27
}
33
28
},
34
29
created () {
@@ -56,7 +51,8 @@ export default {
56
51
},
57
52
components: {
58
53
LinksPage,
59
- Card
54
+ Card,
55
+ NoticeList
60
56
}
61
57
}
62
58
</script >
You can’t perform that action at this time.
0 commit comments