完善筛查预约
This commit is contained in:
parent
4adfe8afc9
commit
9da8c95d2e
@ -37,7 +37,7 @@
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
pageList: {},
|
||||
pageList: [],
|
||||
patientId: "",
|
||||
userInfo: {},
|
||||
pageSize:10,
|
||||
@ -64,14 +64,15 @@
|
||||
getOrderList(this.patientId,this.pageNum,this.pageSize).then(res => {
|
||||
if (res.code == 200) {
|
||||
this.pageList = res.rows
|
||||
// console.log(this.pageList,'555')
|
||||
}
|
||||
})
|
||||
},
|
||||
goScreenOrder() {
|
||||
let userInfo = JSON.stringify(this.userInfo)
|
||||
console.log(userInfo,'999999')
|
||||
let userinfo = JSON.stringify(this.userInfo)
|
||||
// console.log(userInfo,'999999')
|
||||
uni.navigateTo({
|
||||
url: `/pagesB/screenorder/screenorder?userInfo=${userInfo}`
|
||||
url: `/pagesB/screenorder/screenorder?userinfo=${userinfo}`
|
||||
})
|
||||
|
||||
},
|
||||
|
||||
@ -30,6 +30,7 @@
|
||||
<u-form labelPosition="left" :model="formData" :rules="rules" ref="form1">
|
||||
<u-form-item label="预约机构" labelWidth="80">
|
||||
<view class="uniDataSelectClass">
|
||||
<!-- <input type="text">111 -->
|
||||
<uni-data-select v-model="formData.hospitalId" :localdata="DeptList" @change="changeDept"
|
||||
:clear="false">
|
||||
</uni-data-select>
|
||||
@ -187,7 +188,7 @@
|
||||
this.$refs.form1.setRules(this.rules);
|
||||
},
|
||||
onLoad(e) {
|
||||
// console.log(e,'4')
|
||||
console.log(e,'4')
|
||||
if (e) {
|
||||
this.userInfo = JSON.parse(e.userinfo)
|
||||
this.formData.disease = this.userInfo.diseaseList.join(',')
|
||||
|
||||
Loading…
Reference in New Issue
Block a user