修改
This commit is contained in:
parent
d620c7274d
commit
8be9292c21
@ -3,7 +3,7 @@
|
|||||||
<div v-for="(item, index) in patientInfoList" :key="item.id">
|
<div v-for="(item, index) in patientInfoList" :key="item.id">
|
||||||
<div @click="handleAuthRole(item, index)" class="cards">
|
<div @click="handleAuthRole(item, index)" class="cards">
|
||||||
<div class="carditem">
|
<div class="carditem">
|
||||||
<div class="top" >
|
<div class="top">
|
||||||
<img
|
<img
|
||||||
v-if="item.sex == 'FEMALE'"
|
v-if="item.sex == 'FEMALE'"
|
||||||
src="../../../assets/manage/nvtouxiang.png"
|
src="../../../assets/manage/nvtouxiang.png"
|
||||||
@ -23,9 +23,10 @@
|
|||||||
effect="dark"
|
effect="dark"
|
||||||
:content="item.patientName"
|
:content="item.patientName"
|
||||||
placement="top"
|
placement="top"
|
||||||
@click="handleAuth(item, index)"
|
|
||||||
>
|
>
|
||||||
<span> {{ item.patientName }} </span>
|
<span @click="handleAuth(item, index)">
|
||||||
|
{{ item.patientName }}
|
||||||
|
</span>
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
<div class="agesex">
|
<div class="agesex">
|
||||||
{{ item.sex == "MALE" ? "男" : "" }}
|
{{ item.sex == "MALE" ? "男" : "" }}
|
||||||
@ -135,7 +136,7 @@ export default {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
// 双击进入详情
|
// 双击进入详情
|
||||||
handleAuthRole(item, index) {
|
handleAuthRole(item, index) {
|
||||||
if (this.isDoubleClicked) {
|
if (this.isDoubleClicked) {
|
||||||
//这里写你实现双击后的逻辑代码
|
//这里写你实现双击后的逻辑代码
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user