|
@@ -66,7 +66,7 @@
|
|
|
<div id="imgeview">
|
|
|
<el-image
|
|
|
style="width: 1px; height: 1px"
|
|
|
- :src="url"
|
|
|
+ :src="Logo"
|
|
|
:zoom-rate="1.2"
|
|
|
:max-scale="7"
|
|
|
:min-scale="0.2"
|
|
@@ -83,6 +83,7 @@
|
|
|
<script setup>
|
|
|
import { ref, getCurrentInstance } from "vue";
|
|
|
import { useCrud } from "@/hooks/userCrud";
|
|
|
+import Logo from "@/assets/logo.png";
|
|
|
import { useCommonStoreHook, useDictionaryStore } from "@/store";
|
|
|
import { updateSignature } from "@/api/signature";
|
|
|
import dictDataUtil from "@/common/configs/dictDataUtil";
|
|
@@ -91,14 +92,12 @@ import OpSignature from "./components/opSignature.vue";
|
|
|
const { isShowTable, tableType } = toRefs(useCommonStoreHook());
|
|
|
// 数据字典相关
|
|
|
const { dicts } = useDictionaryStore();
|
|
|
-const url =
|
|
|
- "https://fuss10.elemecdn.com/a/3f/3302e58f9a181d2509f3dc0fa68b0jpeg.jpeg";
|
|
|
const downloadUrl = (url) => {
|
|
|
- return import.meta.env.VITE_APP_UPLOAD_URL + url;
|
|
|
+ return url;
|
|
|
};
|
|
|
const toLook = (url) => {
|
|
|
imgSrcList.value = [];
|
|
|
- imgSrcList.value.push(import.meta.env.VITE_APP_UPLOAD_URL + url);
|
|
|
+ imgSrcList.value.push(url);
|
|
|
setTimeout(() => {
|
|
|
document
|
|
|
.getElementById("imgeview")
|