integrated_traffic_vue/src/components/pdf/index.vue

84 lines
1.9 KiB
Vue
Raw Normal View History

2024-01-05 17:33:18 +08:00
<template>
2024-01-11 14:40:34 +08:00
<el-dialog
title="文档"
:model-value="visible && model === 'dialog'"
@update:model-value="visible = false"
>
2024-01-24 18:08:04 +08:00
<div v-if="visible" style="height: 690px; overflow-y: auto">
2024-01-05 17:33:18 +08:00
<vue-pdf
v-for="page in numOfPages"
:key="page"
2024-01-19 17:41:26 +08:00
:src="fnSrc(props.src)"
2024-01-05 17:33:18 +08:00
:page="page"
/>
</div>
</el-dialog>
2024-01-24 18:08:04 +08:00
<div
v-if="model === 'normal'"
:key="src"
style="height: 690px; overflow-y: auto"
>
2024-01-09 19:51:01 +08:00
<vue-pdf
v-for="page in numOfPages"
:key="page"
2024-01-19 17:41:26 +08:00
:src="fnSrc(props.src)"
2024-01-09 19:51:01 +08:00
:page="page"
/>
</div>
2024-01-05 17:33:18 +08:00
</template>
<script setup>
import { watchEffect, ref } from "vue";
import { VuePdf, createLoadingTask } from "vue3-pdfjs/esm";
import { ElMessage } from "element-plus";
import { useVModel } from "@vueuse/core";
2024-01-08 14:31:18 +08:00
const VITE_FILE_URL = import.meta.env.VITE_FILE_URL;
2024-01-05 17:33:18 +08:00
defineOptions({
name: "LayoutPdf",
});
const props = defineProps({
src: {
type: String,
required: true,
},
visible: {
type: Boolean,
default: false,
},
2024-01-09 19:51:01 +08:00
model: {
type: String,
2024-01-19 17:41:26 +08:00
validator: (value) => {
2024-01-26 18:04:18 +08:00
const typeList = ["dialog", "normal"];
if (typeList.includes(value)) {
2024-01-19 17:41:26 +08:00
return true;
} else {
2024-01-26 18:04:18 +08:00
throw new Error(`model必须是${typeList.join("、")}之一`);
2024-01-19 17:41:26 +08:00
}
},
default: "dialog",
2024-01-09 19:51:01 +08:00
},
2024-01-05 17:33:18 +08:00
});
const emits = defineEmits(["update:visible"]);
const visible = useVModel(props, "visible", emits);
const numOfPages = ref(0);
2024-01-19 17:41:26 +08:00
const fnSrc = (src) => {
if (!src) return;
if (src.indexOf("http") !== -1 || src.indexOf("https") !== -1) return src;
else return VITE_FILE_URL + src;
};
2024-01-05 17:33:18 +08:00
watchEffect(() => {
2024-01-12 09:51:58 +08:00
if (props.visible || props.src) {
2024-01-19 17:41:26 +08:00
const loadingTask = createLoadingTask(fnSrc(props.src));
2024-01-05 17:33:18 +08:00
loadingTask.promise
.then((pdf) => {
numOfPages.value = pdf.numPages;
})
.catch(() => {
visible.value = false;
ElMessage.error("文件加载失败");
});
}
});
</script>