Commit ec4a0b42 authored by 陈明豪's avatar 陈明豪

bug修改

parent 1c0896f1
......@@ -1155,7 +1155,7 @@ color: #333333;"
</el-table-column>
<el-table-column align="left" label="入住日期" prop="admissionDate">
<template slot-scope="scope">
{{ scope.row.admissionDate || '-' }}
{{ scope.row.admissionDate ? parseTime(scope.row.admissionDate, '{y}/{m}/{d}'):'-' }}
</template>
</el-table-column>
<el-table-column align="left" label="天数" prop="actualDays">
......@@ -1232,7 +1232,7 @@ color: #333333;"
</el-table-column>
<el-table-column align="left" label="入住日期" prop="admissionDate">
<template slot-scope="scope">
{{ scope.row.admissionDate || '-' }}
{{ scope.row.admissionDate ? parseTime(scope.row.admissionDate, '{y}/{m}/{d}'):'-' }}
</template>
</el-table-column>
<el-table-column align="left" label="天数" prop="actualDays">
......@@ -2638,11 +2638,11 @@ export default {
margin-right: 5px;
}
::v-deep .waitInHos {
::v-deep .waitHos {
color: #D94343;
}
::v-deep .waitInHos::before {
::v-deep .waitHos::before {
content: "·";
font-size: 14px;
margin-right: 5px;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment