|
|
@ -15,11 +15,23 @@ |
|
|
|
<i class="el-icon-close" @click="closeDialog" /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div> |
|
|
|
<div> |
|
|
|
<el-button icon="el-icon-plus" type="primary">新增预约</el-button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<el-row> |
|
|
|
<el-col style="margin: 8px" :span="11"> |
|
|
|
<el-button style="width: 100%" size="mini" icon="el-icon-plus" type="primary">新增预约</el-button> |
|
|
|
</el-col> |
|
|
|
<el-col v-for="item in 5" :key="item" :span="11" class="patientBox"> |
|
|
|
<div class="patient_left"> |
|
|
|
<div>09-10</div> |
|
|
|
<div>lisi</div> |
|
|
|
<div>nan</div> |
|
|
|
<div>32岁</div> |
|
|
|
</div> |
|
|
|
<div class="patient_right"> |
|
|
|
<div>改约</div> |
|
|
|
<div>删除</div> |
|
|
|
</div> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
</el-dialog> |
|
|
|
</template> |
|
|
|
|
|
|
@ -54,11 +66,29 @@ export default { |
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
|
::v-deep .el-dialog__header{ |
|
|
|
background:linear-gradient(#1B5BFB 80% , #1B5BFB 100%); |
|
|
|
background:linear-gradient(rgba(27, 91, 251, 0.8) , #1B5BFB 100%); |
|
|
|
color: #fff; |
|
|
|
} |
|
|
|
.title_header{ |
|
|
|
font-size: 20px; |
|
|
|
font-weight: bold; |
|
|
|
} |
|
|
|
.patientBox{ |
|
|
|
display: flex; |
|
|
|
justify-content: space-between; |
|
|
|
align-items: center; |
|
|
|
padding: 4px 8px 4px 16px; |
|
|
|
background: #EFF4FF; |
|
|
|
border: 1px solid rgba(27, 91, 251, 0.2); |
|
|
|
border-radius: 2px; |
|
|
|
font-size: 14px; |
|
|
|
line-height: 22px; |
|
|
|
margin: 8px; |
|
|
|
.patient_left{ |
|
|
|
display: flex; |
|
|
|
} |
|
|
|
.patient_right{ |
|
|
|
display: flex; |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |
|
|
|