Browse Source

去掉诊疗档案列表住院时间出院时间的时间

newMaster
1747191978@qq.com 3 months ago
parent
commit
38b0499c01
  1. 4
      acupuncture-前台/src/views/medicalFile/index.vue
  2. 4
      acupuncture-后台/src/views/medicalFile/index.vue

4
acupuncture-前台/src/views/medicalFile/index.vue

@ -294,7 +294,7 @@
> >
<template slot-scope="scope"> <template slot-scope="scope">
<span> <span>
{{ parseTime(scope.row.visitTime, "{y}-{m}-{d} {h}:{i}") }} {{ parseTime(scope.row.visitTime, "{y}-{m}-{d}") }}
</span> </span>
</template> </template>
</el-table-column> </el-table-column>
@ -307,7 +307,7 @@
> >
<template slot-scope="scope"> <template slot-scope="scope">
<span> <span>
{{ parseTime(scope.row.dischargeTime, "{y}-{m}-{d} {h}:{i}") }} {{ parseTime(scope.row.dischargeTime, "{y}-{m}-{d}") }}
</span> </span>
</template> </template>
</el-table-column> </el-table-column>

4
acupuncture-后台/src/views/medicalFile/index.vue

@ -313,7 +313,7 @@
> >
<template slot-scope="scope"> <template slot-scope="scope">
<span> <span>
{{ parseTime(scope.row.visitTime, "{y}-{m}-{d} {h}:{i}") }} {{ parseTime(scope.row.visitTime, "{y}-{m}-{d}") }}
</span> </span>
</template> </template>
</el-table-column> </el-table-column>
@ -326,7 +326,7 @@
> >
<template slot-scope="scope"> <template slot-scope="scope">
<span> <span>
{{ parseTime(scope.row.dischargeTime, "{y}-{m}-{d} {h}:{i}") }} {{ parseTime(scope.row.dischargeTime, "{y}-{m}-{d}") }}
</span> </span>
</template> </template>
</el-table-column> </el-table-column>

Loading…
Cancel
Save