diff --git a/src/components/SearchInput.vue b/src/components/SearchInput.vue
index 2cca210..53a2bed 100644
--- a/src/components/SearchInput.vue
+++ b/src/components/SearchInput.vue
@@ -2,7 +2,7 @@
{
emit('selectedCallBack', row);
popoverRef.value.hide();
+ keyword.value=""
};
const beforeShow = () => {
@@ -113,5 +114,8 @@ const beforeShow = () => {
border: none !important;
box-shadow: none !important;
}
+ &:hover{
+ border: 1px solid #409eff !important;
+ }
}
\ No newline at end of file
diff --git a/src/components/outpatient/ServiceItems.vue b/src/components/outpatient/ServiceItems.vue
index 4a4d060..5dfc602 100644
--- a/src/components/outpatient/ServiceItems.vue
+++ b/src/components/outpatient/ServiceItems.vue
@@ -10,7 +10,7 @@
{{ item.itemSocialCode }}
- {{ item.unit }}
+ {{ item.unit }}
@@ -28,10 +28,13 @@
@selectedCallBack="serviceSelect"
:placeholder="'请输入项目名称'"
:disabled="disabled"
+ style="height: 100%"
>
- ¥{{ list.reduce((acc, cur) => acc + cur.unitPrice*cur.selectedNum, 0) }}元
+ ¥{{
+ list.reduce((acc, cur) => acc + cur.unitPrice * cur.selectedNum, 0)
+ }}元
@@ -41,14 +44,14 @@ import Panel from "@/components/common/Panel.vue";
import {CircleClose} from '@element-plus/icons-vue'
import SearchInput from "@/components/SearchInput.vue";
-const props=defineProps({
+const props = defineProps({
status: {
- type: Number,
+ type: Number,
default: 0
}
})
const disabled = computed(() => {
- if(props.status === 1){
+ if (props.status === 1) {
return true
}
})
@@ -127,6 +130,14 @@ 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;
diff --git a/src/components/registration/CardDefault.vue b/src/components/registration/CardDefault.vue
index 0ca5304..4a038f2 100644
--- a/src/components/registration/CardDefault.vue
+++ b/src/components/registration/CardDefault.vue
@@ -126,7 +126,7 @@ const close = () => {
\ No newline at end of file
diff --git a/src/views/registration/index.vue b/src/views/registration/index.vue
index ed62df9..680fa7d 100644
--- a/src/views/registration/index.vue
+++ b/src/views/registration/index.vue
@@ -9,11 +9,11 @@