|
|
@ -84,6 +84,7 @@ |
|
|
|
:data="dataList" |
|
|
|
tooltip-effect="dark" |
|
|
|
style="width: 100%" |
|
|
|
:cell-style="cellStyle" |
|
|
|
> |
|
|
|
<el-table-column prop="patientId" label="登记号" header-align="center" align="center" width="120" /> |
|
|
|
<el-table-column label="状态" header-align="center" align="center" width="70"> |
|
|
@ -315,6 +316,11 @@ export default { |
|
|
|
this.queryProjectList() |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
cellStyle(rowScope) { |
|
|
|
if (rowScope.row.patientStatus === '400') { |
|
|
|
return 'color:green' |
|
|
|
} |
|
|
|
}, |
|
|
|
reFresh() { |
|
|
|
this.pageCurrentChangeHandle(this.page) |
|
|
|
}, |
|
|
|