|
@@ -10,7 +10,7 @@
|
10
|
10
|
<div class="dataTitle">患者列表</div>
|
11
|
11
|
<div style="margin-bottom: 10px;">
|
12
|
12
|
<el-input v-model="queryParams.keywords" placeholder="姓名/透析号" style="width: 180px;" @change="changeSearch"></el-input>
|
13
|
|
- <el-button type="primary" @change="changeSearch">搜索</el-button>
|
|
13
|
+ <el-button type="primary" @change="changeSearch" icon="el-icon-search">搜索</el-button>
|
14
|
14
|
<el-select v-model="queryParams.schedule_type" style="width: 100px;" @change="changeSearch">
|
15
|
15
|
<el-option v-for="item in shiftOptions" :label="item.label" :value="item.value" :key="item.value"></el-option>
|
16
|
16
|
</el-select>
|
|
@@ -198,7 +198,7 @@ export default {
|
198
|
198
|
this.patients = []
|
199
|
199
|
if (response.data.state === 1) {
|
200
|
200
|
this.patients = response.data.data.patients
|
201
|
|
- console.log('病人信息', this.patients[0].schedule)
|
|
201
|
+ // console.log('病人信息', this.patients[0].schedule)
|
202
|
202
|
// 将没有排班的信息排除
|
203
|
203
|
for (let i = this.patients.length - 1; i >= 0; i--) {
|
204
|
204
|
if (this.patients[i].schedule.id == 0) {
|