Compare commits

..

No commits in common. "f5718af4bc11b4bd25b4cc11bec1c242771d804e" and "44b7ee2c33c3f952806e451f6c4f9bbb4cecfb70" have entirely different histories.

2 changed files with 4 additions and 16 deletions

View File

@ -39,7 +39,8 @@ const visitType = ref<any>({
const roleList = ref<any>([])
const initDoctor=()=> {
let query={
keyword: null,
name: null,
sectionId: null,
role:1
}
post('organization/member/search',{query:query}).then((res: any) => {

View File

@ -5,18 +5,12 @@
<div class="title_date">
<Picker></Picker>
</div>
<div class="search">
<el-input v-model="keyword" placeholder="搜索医生"
@keydown.enter="initDoctor"></el-input>
</div>
<div class="content_list">
<div class="role_list">
<ul>
<li :class="isShowNum==index?'active':''" v-for="(item, index) in roleList" :key="index"
@click="isShowNum=index">
<span class="name" :class="isShowNum==index?'active_name':''">{{ item.name }}</span>
<span class="name" :class="isShowNum==index?'active_name':''">{{ item.sectionName }}</span>
<span class="btn" :class="isShowNum==index?'active_btn':''" @click="openDialog(item)">挂号</span>
</li>
</ul>
@ -74,11 +68,10 @@ onMounted(() => {
initDoctor()
getPatientList()
})
const keyword = ref<any>('');
const initDoctor = () => {
let query={
keyword: keyword.value,
name: null,
sectionId: null,
role:1
}
post('organization/member/search',{query:query}).then((res: any) => {
@ -181,12 +174,6 @@ const close=()=>{
.active {
background-color: #5078c8;
}
.search{
margin-top: 10px;
}
.content_list{
margin-top: 10px;
}
}