Commit cfe37f19 by 唐玉峰

.

parent 3c62a980
...@@ -73,7 +73,7 @@ ...@@ -73,7 +73,7 @@
<el-row> <el-row>
<el-col :span="7"><span class="key a13">出生日期 </span></el-col> <el-col :span="7"><span class="key a13">出生日期 </span></el-col>
<el-col :span="17" <el-col :span="17"
><span class="values"> {{ changeValue("a13") != "——" ? transformTime(changeValue("a13")) : changeValue("a13") }}</span></el-col ><span class="values"> {{ changeValue("a13") != "——" ? transformTimestamp(changeValue("a13")) : changeValue("a13") }}</span></el-col
> >
</el-row> </el-row>
</el-col> </el-col>
...@@ -306,7 +306,7 @@ ...@@ -306,7 +306,7 @@
<el-row> <el-row>
<el-col :span="8"><span class="key b12">入院时间 </span></el-col> <el-col :span="8"><span class="key b12">入院时间 </span></el-col>
<el-col :span="16" <el-col :span="16"
><span class="values">{{ changeValue("b12") != "——" ? transformTime(changeValue("b12")) : changeValue("b12") }}</span></el-col ><span class="values">{{ changeValue("b12") != "——" ? transformTimestamp(changeValue("b12")) : changeValue("b12") }}</span></el-col
> >
</el-row> </el-row>
</el-col> </el-col>
...@@ -344,7 +344,7 @@ ...@@ -344,7 +344,7 @@
<el-row> <el-row>
<el-col :span="8"><span class="key b15">出院时间 </span></el-col> <el-col :span="8"><span class="key b15">出院时间 </span></el-col>
<el-col :span="16" <el-col :span="16"
><span class="values">{{ changeValue("b15") != "——" ? transformTime(changeValue("b15")) : changeValue("b15") }}</span></el-col ><span class="values">{{ changeValue("b15") != "——" ? transformTimestamp(changeValue("b15")) : changeValue("b15") }}</span></el-col
> >
</el-row> </el-row>
</el-col> </el-col>
...@@ -667,7 +667,7 @@ ...@@ -667,7 +667,7 @@
<el-row> <el-row>
<el-col :span="3"><span class="key b33">质控日期</span></el-col> <el-col :span="3"><span class="key b33">质控日期</span></el-col>
<el-col :span="15" <el-col :span="15"
><span class="values">{{ changeValue("b33") != "——" ? transformTime(changeValue("b33")) : changeValue("b33") }}</span></el-col ><span class="values">{{ changeValue("b33") != "——" ? transformTimestamp(changeValue("b33")) : changeValue("b33") }}</span></el-col
> >
</el-row> </el-row>
</div> </div>
...@@ -678,7 +678,7 @@ ...@@ -678,7 +678,7 @@
<el-table-column prop="opS_CODE" label="手术及操作编码"></el-table-column> <el-table-column prop="opS_CODE" label="手术及操作编码"></el-table-column>
<el-table-column prop="opS_TIME" label="手术及操作日期"> <el-table-column prop="opS_TIME" label="手术及操作日期">
<template #default="scope"> <template #default="scope">
{{ scope.row.opS_TIME ? transformTime(scope.row.opS_TIME) : "" }} {{ scope.row.opS_TIME ? transformTimestamp(scope.row.opS_TIME) : "" }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="opS_LEVEL" label="手术级别"></el-table-column> <el-table-column prop="opS_LEVEL" label="手术级别"></el-table-column>
...@@ -1064,7 +1064,7 @@ import { reactive, toRefs, computed, onMounted, nextTick } from "@vue/compositio ...@@ -1064,7 +1064,7 @@ import { reactive, toRefs, computed, onMounted, nextTick } from "@vue/compositio
import { transformTimestamp } from "../../utils/formatTime"; import { transformTimestamp } from "../../utils/formatTime";
import { decimal } from "../../utils/decimal"; import { decimal } from "../../utils/decimal";
export default { export default {
props: [ "medicalrecord"], props: ["medicalrecord"],
data() { data() {
return {}; return {};
}, },
......
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