|
@@ -1,26 +1,43 @@
|
1
|
1
|
<template>
|
|
2
|
+ <div class="main-contain">
|
|
3
|
+ <div class="position">
|
|
4
|
+ <bread-crumb :crumbs='crumbs'></bread-crumb>
|
|
5
|
+ </div>
|
2
|
6
|
<div class="app-container" id="dialysis-board-box" >
|
3
|
7
|
<el-row>
|
4
|
8
|
<el-button type="primary" @click="fullscreenboard"> 全屏投影</el-button>
|
5
|
9
|
</el-row>
|
6
|
10
|
<bulletinboard></bulletinboard>
|
7
|
11
|
</div>
|
|
12
|
+ </div>
|
8
|
13
|
</template>
|
9
|
14
|
|
10
|
15
|
<script>
|
11
|
16
|
import { getBoards } from "@/api/board";
|
12
|
17
|
import bulletinboard from "./components/bulletinboard";
|
13
|
18
|
import { parseTime } from "@/utils";
|
|
19
|
+import BreadCrumb from "@/xt_pages/components/bread-crumb";
|
14
|
20
|
|
15
|
21
|
export default {
|
16
|
|
- components: { bulletinboard },
|
17
|
22
|
name: 'bulletinBoard',
|
|
23
|
+ data() {
|
|
24
|
+ return {
|
|
25
|
+ crumbs:[
|
|
26
|
+ {path:false, name:'透析管理'},
|
|
27
|
+ {path:false, name:'数据看板'},
|
|
28
|
+ ],
|
|
29
|
+ }
|
|
30
|
+ },
|
18
|
31
|
|
19
|
32
|
methods:{
|
20
|
33
|
fullscreenboard:function(){
|
21
|
34
|
let routeData = this.$router.resolve({ path: '/fullscreenboard'});
|
22
|
35
|
window.open(routeData.href, '_blank');
|
23
|
36
|
},
|
24
|
|
- }
|
|
37
|
+ },
|
|
38
|
+ components: {
|
|
39
|
+ BreadCrumb,
|
|
40
|
+ bulletinboard
|
|
41
|
+ }
|
25
|
42
|
}
|
26
|
43
|
</script>
|