更改护理站信息
This commit is contained in:
parent
6459f04081
commit
94a8d66b47
@ -22,7 +22,7 @@
|
|||||||
v-if="nurseStationlist.find((e) => e.isAdmin == '1')"
|
v-if="nurseStationlist.find((e) => e.isAdmin == '1')"
|
||||||
>
|
>
|
||||||
<el-select
|
<el-select
|
||||||
v-model="queryParams.nurseStationCode"
|
v-model="queryParams.id"
|
||||||
clearable
|
clearable
|
||||||
placeholder="请选择护理站"
|
placeholder="请选择护理站"
|
||||||
v-loadmore="loadMore"
|
v-loadmore="loadMore"
|
||||||
@ -31,14 +31,14 @@
|
|||||||
v-for="item in nurseStationlist"
|
v-for="item in nurseStationlist"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
:label="item.nurseStationName"
|
:label="item.nurseStationName"
|
||||||
:value="item.nurseStationCode"
|
:value="item.id"
|
||||||
>
|
>
|
||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="所属护理站" prop="nurseStationName" v-else>
|
<el-form-item label="所属护理站" prop="nurseStationName" v-else>
|
||||||
<el-select
|
<el-select
|
||||||
v-model="queryParams.nurseStationCode"
|
v-model="queryParams.id"
|
||||||
placeholder="请选择护理站"
|
placeholder="请选择护理站"
|
||||||
v-loadmore="loadMore"
|
v-loadmore="loadMore"
|
||||||
>
|
>
|
||||||
@ -46,7 +46,7 @@
|
|||||||
v-for="item in nurseStationlist"
|
v-for="item in nurseStationlist"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
:label="item.nurseStationName"
|
:label="item.nurseStationName"
|
||||||
:value="item.nurseStationCode"
|
:value="item.id"
|
||||||
>
|
>
|
||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
@ -860,6 +860,7 @@ export default {
|
|||||||
userId: null,
|
userId: null,
|
||||||
nurseStationCode: null,
|
nurseStationCode: null,
|
||||||
nurseStationName: null,
|
nurseStationName: null,
|
||||||
|
id: null,
|
||||||
nurseStationType: null,
|
nurseStationType: null,
|
||||||
agencyIntroduce: null,
|
agencyIntroduce: null,
|
||||||
nurseStationDescription: null,
|
nurseStationDescription: null,
|
||||||
@ -1316,7 +1317,7 @@ export default {
|
|||||||
} else {
|
} else {
|
||||||
this.total2 = res.total;
|
this.total2 = res.total;
|
||||||
this.nurseStationlist = res.rows;
|
this.nurseStationlist = res.rows;
|
||||||
this.queryParams.nurseStationCode = res.rows[0].nurseStationCode;
|
this.queryParams.id = res.rows[0].id;
|
||||||
this.handleQuery();
|
this.handleQuery();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user