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

Loading…
Cancel
Save