|
|
@ -4,24 +4,24 @@ |
|
|
|
<a-form :form="form" class="d-flex flex-wrap align-center" layout="inline"> |
|
|
|
<div class="fill-width"> |
|
|
|
<a-form-item> |
|
|
|
<a-select placeholder="请选择医院" style="width: 200px" @change="changeHospitalId" allow-clear> |
|
|
|
<a-select placeholder="请选择医院" style="width: 180px" @change="changeHospitalId" allow-clear> |
|
|
|
<a-select-option :key="item.id" :value="item.id" v-for="item in hospitals">{{ item.name }}</a-select-option> |
|
|
|
</a-select> |
|
|
|
</a-form-item> |
|
|
|
<a-form-item> |
|
|
|
<a-select placeholder="请选择医生" style="width: 200px" @change="changeDoctorId" allow-clear> |
|
|
|
<a-select placeholder="请选择医生" style="width: 180px" @change="changeDoctorId" allow-clear> |
|
|
|
<a-select-option :key="item.id" :value="item.id" v-for="item in doctorList">{{ item.name }}</a-select-option> |
|
|
|
</a-select> |
|
|
|
</a-form-item> |
|
|
|
<a-form-item> |
|
|
|
<a-select placeholder="请选择组别" style="width: 200px" @change="changeInpatientId" allow-clear> |
|
|
|
<a-select placeholder="请选择组别" style="width: 180px" @change="changeInpatientId" allow-clear> |
|
|
|
<a-select-option :key="item.id" :value="item.id" v-for="item in controlGroups">{{ item.name }}</a-select-option> |
|
|
|
</a-select> |
|
|
|
</a-form-item> |
|
|
|
</div> |
|
|
|
<div class="fill-width"> |
|
|
|
<a-form-item> |
|
|
|
<a-range-picker @change="changeTime" style="width: 318px"> |
|
|
|
<a-range-picker @change="changeTime" style="width: 278px"> |
|
|
|
<template slot="dateRender" slot-scope="current"> |
|
|
|
<div class="ant-calendar-date" :style="getCurrentStyle(current)"> |
|
|
|
{{ current.date() }} |
|
|
@ -30,7 +30,7 @@ |
|
|
|
</a-range-picker> |
|
|
|
</a-form-item> |
|
|
|
<a-form-item> |
|
|
|
<a-select placeholder="请选择状态" :default-value="recordStatus" style="width: 200px" @change="changeStatus" allow-clear> |
|
|
|
<a-select placeholder="请选择状态" :default-value="recordStatus" style="width: 180px" @change="changeStatus" allow-clear> |
|
|
|
<a-select-option :key="index" :value="index" v-for="(item, index) in status">{{ item }}</a-select-option> |
|
|
|
</a-select> |
|
|
|
</a-form-item> |
|
|
@ -213,7 +213,7 @@ export default { |
|
|
|
inputStatus: recordStatus, |
|
|
|
pageSize: 10, |
|
|
|
doctorId, |
|
|
|
role: 1, |
|
|
|
role: 2, |
|
|
|
startTime, |
|
|
|
endTime, |
|
|
|
}, |
|
|
|