This commit is contained in:
2024-04-10 16:29:16 +08:00
parent f281d0267a
commit 31236021c7
3 changed files with 57 additions and 1 deletions

View File

@ -0,0 +1,53 @@
<template>
<div class="card">
<div class="cardleft">
<img class="headsculpture" src="../../../assets/manage/touxiang.png" alt="">
<!-- <img class="headsculpture" src="../../../assets/manage/nvtouxiang.png" alt=""> -->
</div>
<div class="cardright">
</div>
</div>
</template>
<script>
export default {
name: "Auditing",
data() {
return {
};
},
created() {
},
methods: {
}
};
</script>
<style lang="scss" scoped>
.card {
width: 100%;
display: flex;
justify-content: space-evenly;
padding: 20px 0;
height: calc(100vh - 84px);
background-color: #F1F3F5;
.cardleft {
width: 35%;
background-color: #fff;
overflow: scroll;
padding: 20px;
.headsculpture {
width: 50px;
height: 50px;
}
}
.cardright {
overflow: scroll;
background-color: #fff;
width: 62%;
}
}
</style>

View File

@ -32,6 +32,9 @@
</el-descriptions-item>
<el-descriptions-item label="签约时间">{{ ByRecord.signTime }}</el-descriptions-item>
</el-descriptions>
<el-descriptions title="专病管理路径" style="margin-top: 20px;">
<el-descriptions-item label="路径名称">{{ ByRecord.routeName }}</el-descriptions-item>
</el-descriptions>
<el-descriptions title="硬件信息" style="margin-top: 20px;" class="descriptions">
<el-descriptions-item>
<el-table :data="ByRecord.signDevices" style="width: 100%">

View File

@ -14,7 +14,7 @@
<el-input v-model="queryParams.patientPhone" placeholder="请输入患者电话" clearable
@keyup.enter.native="handleQuery" style="width:200px" />
</el-form-item>
<el-form-item label="出院/就诊时间" prop="dischargeTimeStart">
<el-form-item label="出院/就诊时间" prop="dischargeTimeStart" label-width="120px">
<el-date-picker v-model="dischargeTime" type="daterange" range-separator="" start-placeholder="开始日期"
style="width:300px" value-format="yyyy-MM-dd" end-placeholder="结束日期">
</el-date-picker>