2 Commits

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

47
src/components/doctorCheck/QueueCheckList.vue

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

Loading…
Cancel
Save