pengjun 16 hours ago
parent
commit
d2e721fdd9
  1. 13
      src/components/doctorCheck/CheckItemList.vue

13
src/components/doctorCheck/CheckItemList.vue

@ -228,6 +228,7 @@ export default {
currentRow: -1, // currentRow: -1, //
dialogWinMoreResult: false, dialogWinMoreResult: false,
dialogWinMoreResultTimes:0, //
dialogWinPacsTemplate: false, dialogWinPacsTemplate: false,
moreResult: { moreResult: {
data: [], data: [],
@ -328,6 +329,8 @@ export default {
this.userInfo.operatorType = window.sessionStorage.getItem("operatorType") || '0'; this.userInfo.operatorType = window.sessionStorage.getItem("operatorType") || '0';
this.userInfo.userId = window.sessionStorage.getItem("userId") || null; this.userInfo.userId = window.sessionStorage.getItem("userId") || null;
this.userInfo.user = window.sessionStorage.getItem("user") || null; this.userInfo.user = window.sessionStorage.getItem("user") || null;
}, },
// //
@ -772,7 +775,13 @@ export default {
this.dialogWinMoreResult = true; this.dialogWinMoreResult = true;
this.watchSelection();
//
if(this.dialogWinMoreResultTimes == 0){
this.watchSelection();
this.dialogWinMoreResultTimes++ //
}
}, },
// pacs // pacs
@ -1127,11 +1136,13 @@ export default {
let resultBox = document.getElementById("resultBox"); // //.inline-input let resultBox = document.getElementById("resultBox"); // //.inline-input
// //
resultBox.addEventListener("click", function (event) { resultBox.addEventListener("click", function (event) {
event.preventDefault();
// //
that.getCaretPosition(); that.getCaretPosition();
}); });
resultBox.addEventListener("input", function (event) { resultBox.addEventListener("input", function (event) {
event.preventDefault();
// //
that.getCaretPosition(); that.getCaretPosition();
}); });

Loading…
Cancel
Save