|
@@ -20,7 +20,13 @@
|
20
|
20
|
element-loading-spinner="el-icon-loading"
|
21
|
21
|
element-loading-background="rgba(0, 0, 0, 0.8)"
|
22
|
22
|
>
|
23
|
|
- <div class="patientBox" style="width:25%;padding-left:10px;">
|
|
23
|
+ <div class="patientBox" style="width:25%;padding-left:10px;position: relative;">
|
|
24
|
+ <el-button
|
|
25
|
+ style="position: absolute;right:0;top:2px;z-index:10"
|
|
26
|
+ size="small"
|
|
27
|
+ type="primary"
|
|
28
|
+ @click="refresh"
|
|
29
|
+ >刷新</el-button>
|
24
|
30
|
<el-tabs v-model="activeName" @tab-click="handleClick">
|
25
|
31
|
<el-tab-pane label="候诊区" name="first">
|
26
|
32
|
<div class="cell clearfix" style="margin-bottom:10px;">
|
|
@@ -1483,6 +1489,10 @@ export default {
|
1483
|
1489
|
|
1484
|
1490
|
let strDate = h + ':' + m;
|
1485
|
1491
|
return strDate;
|
|
1492
|
+ },
|
|
1493
|
+ refresh(){
|
|
1494
|
+ console.log('1111111')
|
|
1495
|
+ this.requestDialysisSchedules()
|
1486
|
1496
|
}
|
1487
|
1497
|
}
|
1488
|
1498
|
}
|