|
|
|
@ -190,6 +190,14 @@ const selectPostion = val => {
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
//关闭结果
|
|
|
|
|
// const closedCard = () => {
|
|
|
|
|
// useConsultationStoreHooks().changeBodyResultInfo({
|
|
|
|
|
// name: "",
|
|
|
|
|
// value: "",
|
|
|
|
|
// postion: ""
|
|
|
|
|
// });
|
|
|
|
|
// };
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
@ -290,6 +298,7 @@ const selectPostion = val => {
|
|
|
|
|
v-show="selectToolInfo.toolName || bodyResultInfo.value"
|
|
|
|
|
class="result_card"
|
|
|
|
|
>
|
|
|
|
|
<div class="result_card_content">
|
|
|
|
|
<div v-show="bodyResultInfo.name" class="result_card_left">
|
|
|
|
|
<span>{{ bodyResultInfo.name }}</span>
|
|
|
|
|
<span style="margin-top: 16px" v-show="bodyResultInfo.postion">{{
|
|
|
|
@ -311,6 +320,8 @@ const selectPostion = val => {
|
|
|
|
|
<div v-show="!bodyResultInfo.name" class="result_card_item">
|
|
|
|
|
请点击需要检查的身体部位
|
|
|
|
|
</div>
|
|
|
|
|
<!-- <el-icon class="closed"><Close @click="closedCard" /></el-icon> -->
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- 当前检查工具 -->
|
|
|
|
@ -548,12 +559,13 @@ const selectPostion = val => {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.result_card {
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 10px;
|
|
|
|
|
left: 0;
|
|
|
|
|
z-index: 999999;
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 65px;
|
|
|
|
|
left: 600px;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
width: 98%;
|
|
|
|
|
width: calc(100% - 1220px);
|
|
|
|
|
min-width: 730px;
|
|
|
|
|
min-height: 105px;
|
|
|
|
|
padding: 24px;
|
|
|
|
|
font-size: 16px;
|
|
|
|
@ -565,6 +577,19 @@ const selectPostion = val => {
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
box-shadow: 0 0 8px 0 rgb(0 0 0 / 15%);
|
|
|
|
|
|
|
|
|
|
.result_card_content {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
.closed {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -10px;
|
|
|
|
|
right: -10px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.result_card_left {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|