选择医生
This commit is contained in:
parent
edf0aee606
commit
cef1acabe6
@ -388,7 +388,7 @@
|
||||
})
|
||||
} else {
|
||||
uni.navigateTo({
|
||||
url: `/pagesC/choosedoctor/choosedoctor?orgNo=${this.query.orgNo}&userNo=${this.query.userNo}`
|
||||
url: `/pagesC/choosedoctor/choosedoctor?orgNo=${this.query.orgNo}&userNo=${this.query.userNo}&static=${1}`
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
<template>
|
||||
<view class="app">
|
||||
<!-- <view class="inputs">
|
||||
<view class="inputs" v-if="show==true">
|
||||
<i class="icon"></i>
|
||||
<input type="text" name="" id="" class="input" placeholder="请输入医生姓名" v-model="realname">
|
||||
</view> -->
|
||||
</view>
|
||||
<view class="list" v-if="doctorlist">
|
||||
<view class="item" v-for="item in doctorlist" @tap='emitdata(item)'>
|
||||
<image src="../../static/docHead.png" mode=""></image>
|
||||
@ -57,6 +57,7 @@
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
show:"",
|
||||
orgNo: null,
|
||||
userNo: null,
|
||||
teamNo: null,
|
||||
@ -108,10 +109,15 @@
|
||||
delta: 1
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
},
|
||||
},
|
||||
onLoad(options) {
|
||||
console.log(options,'888')
|
||||
if(options.static=="1"){
|
||||
this.show=true
|
||||
|
||||
}
|
||||
if (options.item) {
|
||||
this.list = JSON.parse(options.item)
|
||||
console.log(this.list, '58')
|
||||
@ -157,4 +163,4 @@
|
||||
|
||||
<style lang="scss">
|
||||
@import './choosedoctor.scss';
|
||||
</style>
|
||||
</style>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user