|
@@ -50,6 +50,7 @@
|
|
|
<script>
|
|
|
import api from '@api/qualityControl.js';
|
|
|
import QCTipPop from './QCTipPop.vue';
|
|
|
+import $ from 'jquery'
|
|
|
|
|
|
export default {
|
|
|
name: "QCTypePour",
|
|
@@ -112,10 +113,11 @@ export default {
|
|
|
this.closePop();
|
|
|
return;
|
|
|
}
|
|
|
+ const t=$(".el-main").scrollTop();
|
|
|
this.activeId = item.id;
|
|
|
this.curName = item.name;
|
|
|
this.curEmp = item.behospitalCodes;
|
|
|
- this.popTop = e.clientY;
|
|
|
+ this.popTop = t+e.clientY;
|
|
|
this.popLeft=e.clientX;
|
|
|
this.showPop = true;
|
|
|
},
|