|
@@ -163,6 +163,7 @@ class VedioList extends React.Component{
|
|
|
doctorModal: false, //选择医生弹窗
|
|
|
selectedDocdtorId: '',
|
|
|
searchDoctorName: '', //搜索医生姓名
|
|
|
+ searchDoctorPhone: '', //搜索医生手机号
|
|
|
deparmentModal: false, //科室弹窗
|
|
|
deparmentColumns: [
|
|
|
{ title: '科室ID', dataIndex: 'id', id: 'id' },
|
|
@@ -405,6 +406,11 @@ class VedioList extends React.Component{
|
|
|
field: "doctorName",
|
|
|
operate: "contains",
|
|
|
value: this.state.searchDoctorName
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: "phone",
|
|
|
+ operate: "contains",
|
|
|
+ value: this.state.searchDoctorPhone
|
|
|
}
|
|
|
]
|
|
|
}
|
|
@@ -1063,6 +1069,15 @@ class VedioList extends React.Component{
|
|
|
}}
|
|
|
/>
|
|
|
</Col>
|
|
|
+ <Col span={8}>
|
|
|
+ <Input
|
|
|
+ placeholder="手机号"
|
|
|
+ value={this.state.searchDoctorPhone}
|
|
|
+ onChange={(e) => {
|
|
|
+ this.setState({searchDoctorPhone: e.target.value})
|
|
|
+ }}
|
|
|
+ />
|
|
|
+ </Col>
|
|
|
<Col span={8}>
|
|
|
<Button type="primary" onClick={() => {
|
|
|
this.setState({
|