Compare commits

..

No commits in common. "521eea2445eaebd2f15293f0bc2c9a93324d730d" and "b869d8eab7590ef42a8cfb1b9bba7889732fb950" have entirely different histories.

5 changed files with 141 additions and 163 deletions

View File

@ -2,7 +2,7 @@
<template>
<el-input
ref="inputRef"
style="width: 100%;height: 100%"
style="width: 100%;"
v-model="keyword"
:prefix-icon="Plus"
:placeholder="props.placeholder"
@ -91,7 +91,6 @@ const emit = defineEmits(['selectedCallBack']);
const clickRow = (row: any) => {
emit('selectedCallBack', row);
popoverRef.value.hide();
keyword.value=""
};
const beforeShow = () => {
@ -114,8 +113,5 @@ const beforeShow = () => {
border: none !important;
box-shadow: none !important;
}
&:hover{
border: 1px solid #409eff !important;
}
}
</style>

View File

@ -28,13 +28,10 @@
@selectedCallBack="serviceSelect"
:placeholder="'请输入项目名称'"
:disabled="disabled"
style="height: 100%"
>
</SearchInput>
</div>
<span style="margin-right: 24px">{{
list.reduce((acc, cur) => acc + cur.unitPrice * cur.selectedNum, 0)
}}</span></div>
<span style="margin-right: 24px">{{ list.reduce((acc, cur) => acc + cur.unitPrice*cur.selectedNum, 0) }}</span></div>
</div>
</Panel>
</template>
@ -130,14 +127,6 @@ const deleteItem = (id: any) => {
text-align: center;
}
.unit {
height: 100%;
width: 200px;
margin-left: 10px;
border-right: 1px solid #EAEAEC;
line-height: 64px;
}
.delete {
height: 100%;
width: 50px;

View File

@ -126,7 +126,7 @@ const close = () => {
<style scoped lang="scss">
.btn-wrapper {
width: 150px;
width: 200px;
height: 100%;
background: #FFFFFF;
border-radius: 8px;
@ -134,8 +134,8 @@ const close = () => {
width: 100%;
height: 46px;
border-bottom: 1px solid #EAEAEC;
font-weight: 400;
font-size: 15px;
font-weight: 500;
font-size: 16px;
color: #4D6DE4;
font-style: normal;
display: flex;

View File

@ -118,7 +118,7 @@
<template #footer>
<div class="bottom">
<el-dropdown v-if="isShowCard" placement="top-start" @show="showCardBtn" @hide="hide">
<div class="left" style="outline: none;">
<div class="left">
<span class="btnCard" type="primary">
<img class="image" src="/public/static/images/registration/card.png" alt="" srcset="">进行读卡
<img class="image1" :src="'/public/static/images/registration/'+(showBtn?2:1)+'.png'" alt="" srcset="">
@ -129,7 +129,7 @@
@close="deleteCard"/>
</template>
</el-dropdown>
<div class="closeBtn" v-else @click="deleteCard" style="outline: none;">
<div class="closeBtn" v-else @click="deleteCard">
<img class="image" src="/public/static/images/registration/card.png" alt="" srcset="">
退出医保
</div>
@ -182,7 +182,6 @@ const rules = ref<any>({
],
age: [
{required: true, message: '请输入年龄', trigger: 'blur'},
{type: 'number', message: '年龄必须为数字值', trigger: 'blur'},
],
gender: [
{required: true, message: '请选择性别', trigger: 'blur'},
@ -323,8 +322,8 @@ defineExpose({init})
}
.btnCard {
width: 150px;
height: 36px;
width: 200px;
height: 48px;
background: #FFFFFF;
border-radius: 8px;
border: 1px solid #4D6DE4;
@ -332,20 +331,20 @@ defineExpose({init})
justify-content: center;
align-items: center;
font-weight: 400;
font-size: 15px;
font-size: 20px;
color: #4D6DE4;
font-style: normal;
.image {
width: 20px;
height: 17px;
margin-right: 6px;
width: 26px;
height: 22px;
margin-right: 10px;
}
.image1 {
width: 12px;
height: 6px;
margin-left: 16px;
width: 16px;
height: 8px;
margin-left: 20px;
}
&:hover {
@ -355,8 +354,8 @@ defineExpose({init})
}
.closeBtn {
width: 150px;
height: 36px;
width: 200px;
height: 48px;
background: #FFFFFF;
border-radius: 8px;
border: 1px solid #4D6DE4;
@ -364,14 +363,14 @@ defineExpose({init})
justify-content: center;
align-items: center;
font-weight: 400;
font-size: 15px;
font-size: 20px;
color: #4D6DE4;
font-style: normal;
.image {
width: 20px;
height: 17px;
margin-right: 6px;
width: 26px;
height: 22px;
margin-right: 10px;
}
&:hover {
@ -379,10 +378,4 @@ defineExpose({init})
border: 1px solid #4D6DE4;
}
}
:deep(.el-dropdown) {
&:hover {
border: none;
}
}
</style>

View File

@ -9,11 +9,11 @@
</div>
<div class="left-bottom">
<Panel title="医生列表">
<div class="search" style="padding: 0 24px">
<div class="search">
<el-input v-model="keyword" placeholder="搜索医生"
@keydown.enter="initDoctor"></el-input>
</div>
<div class="content_list" style="padding: 0 24px">
<div class="content_list">
<div class="role_list">
<ul>
<li v-for="(item, index) in roleList" :key="index"