2 Commits

  1. 29
      src/components/doctorCheck/QueueCheckList.vue
  2. 1
      src/components/patientRegister/PatientRegisterList.vue

29
src/components/doctorCheck/QueueCheckList.vue

@ -74,10 +74,12 @@
)
" style="width: 40px; min-width: 40px; height: 26px">刷新</el-button>
</div>
<!-- 分诊排队
<div>
<el-button type="primary" class="commonbutton" @click="fnQueue"
style="width: 40px; min-width: 40px; height: 26px">排队</el-button>
</div>
-->
</div>
</div>
<div style="margin-top: 6px">已呼人员</div>
@ -180,7 +182,12 @@ export default {
queue_play_voice_repeate_times: 2, //
queue_play_voice_repeate_interval: 1, // ()
isSignIn: "N"//
isSignIn: "N", //
//
clickTime1: 0,
clickTime2: 0,
};
},
@ -533,23 +540,43 @@ export default {
//
rowClickWait(row) {
this.clickTime1 = new Date().getTime()
setTimeout(() => {
if (this.clickTime1 > this.clickTime2) {
this.waitRow = row;
this.queueParams = {
patientRegisterId: row.patientRegisterId,
};
}
}, 400);
},
//
rowClickAlready(row) {
this.clickTime1 = new Date().getTime()
setTimeout(() => {
if (this.clickTime1 > this.clickTime2) {
this.alreadyRow = row;
this.queueParams = {
patientRegisterId: row.patientRegisterId,
};
}
}, 400);
},
//
rowClickOver(row) {
this.clickTime1 = new Date().getTime()
setTimeout(() => {
if (this.clickTime1 > this.clickTime2) {
this.overRow = row;
}
}, 400);
},
},

1
src/components/patientRegister/PatientRegisterList.vue

@ -683,6 +683,7 @@ export default {
dialogRecover: false,
patientRegisterNo: '',
//
clickTime1: 0,
clickTime2: 0,
};

Loading…
Cancel
Save