|
@@ -71,7 +71,7 @@
|
71
|
71
|
<div style="width:160px">
|
72
|
72
|
|
73
|
73
|
<div class="tableTitle">患者列表</div>
|
74
|
|
-
|
|
74
|
+
|
75
|
75
|
|
76
|
76
|
<el-table ref="table" :data="patientsData" border style="width: 100%;" height="500" :row-style="{ color: '#303133' }"
|
77
|
77
|
:header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
|
|
@@ -619,6 +619,7 @@
|
619
|
619
|
})
|
620
|
620
|
}
|
621
|
621
|
}, created() {
|
|
622
|
+ this.getCurrentOrgPatients()
|
622
|
623
|
var date = new Date()
|
623
|
624
|
var year = date.getFullYear() //获取完整的年份(4位)
|
624
|
625
|
var month = date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1).toString() : date.getMonth() + 1 //获取当前月份(0-11,0代表1月)
|
|
@@ -630,7 +631,6 @@
|
630
|
631
|
this.query.statistics_type = 1
|
631
|
632
|
this.GetDialysisWeightChartData(this.query)
|
632
|
633
|
this.GetDialysisWeightTableData(this.query)
|
633
|
|
- this.getCurrentOrgPatients()
|
634
|
634
|
|
635
|
635
|
|
636
|
636
|
}
|