123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <template>
- <div ref="arbitrateImgRef" class="arbitrate-img" @scroll="onImgScroll">
- <img src="@/assets/imgs/paper.jpg" alt="扫描结果" @load="onImgLoad" />
- <!-- <img :src="imgSrc" alt="扫描结果" @load="onImgLoad" /> -->
- </div>
- <div ref="imgThumbRef" class="arbitrate-img-thumb">
- <img src="@/assets/imgs/paper.jpg" alt="扫描结果" />
- <!-- <img :src="imgSrc" alt="扫描结果" /> -->
- <div
- class="arbitrate-img-area"
- v-ele-move-directive.prevent.stop="{
- moveStart: moveAreaStart,
- moveElement: moveArea,
- moveStop: moveAreaStop,
- }"
- :style="areaStyle"
- ></div>
- </div>
- </template>
- <script setup lang="ts">
- import { computed, ref, reactive } from "vue";
- import { vEleMoveDirective } from "@/directives/eleMove";
- import { RecognizeArbitrateTaskDetail } from "@/ap/types/recognizeCheck";
- import { onMounted } from "vue";
- defineOptions({
- name: "RecognizeImage",
- });
- const props = defineProps<{
- imgSrc: string;
- recogData: RecognizeArbitrateTaskDetail[];
- }>();
- const arbitrateImgRef = ref();
- // img
- function updateImgAreaSize() {
- const imgBoxDom = arbitrateImgRef.value as HTMLDivElement;
- const imgDom = imgBoxDom.firstChild as HTMLImageElement;
- const { clientHeight } = imgThumbRef.value as HTMLDivElement;
- const areaRate = Math.min(imgBoxDom.clientHeight / imgDom.clientHeight, 1);
- const areaHeight = clientHeight * areaRate;
- areaSize.height = areaHeight;
- }
- function onImgLoad() {
- updateImgAreaSize();
- }
- let areaIsMoving = false;
- function onImgScroll(e: Event) {
- if (areaIsMoving) {
- e.preventDefault();
- return;
- }
- const imgBoxDom = arbitrateImgRef.value as HTMLDivElement;
- const scrollTop = imgBoxDom.scrollTop;
- const imgDom = imgBoxDom.firstChild as HTMLImageElement;
- const { clientHeight } = imgThumbRef.value as HTMLDivElement;
- areaSize.top = (clientHeight * scrollTop) / imgDom.clientHeight;
- }
- // img-thumb area
- const imgThumbRef = ref();
- const areaSize = reactive({
- height: 40,
- top: 0,
- });
- const areaOriginTop = ref(0);
- const areaStyle = computed(() => {
- return { height: `${areaSize.height}px`, top: `${areaSize.top}px` };
- });
- interface MovePos {
- left: number;
- top: number;
- }
- function moveAreaStart() {
- areaOriginTop.value = areaSize.top;
- areaIsMoving = false;
- }
- function moveArea(pos: MovePos) {
- areaIsMoving = true;
- const areaTop = pos.top + areaOriginTop.value;
- const { clientHeight } = imgThumbRef.value as HTMLDivElement;
- areaSize.top = Math.min(areaTop, clientHeight - areaSize.height);
- areaSize.top = Math.max(0, areaSize.top);
- const imgBoxDom = arbitrateImgRef.value as HTMLDivElement;
- const imgDom = imgBoxDom.firstChild as HTMLImageElement;
- imgBoxDom.scrollTop = (imgDom.clientHeight * areaSize.top) / clientHeight;
- }
- function moveAreaStop(pos: MovePos) {
- moveArea(pos);
- areaIsMoving = false;
- }
- </script>
|