fix 插入图片

This commit is contained in:
赵霄
2023-09-17 19:16:38 +08:00
parent 50e199c43c
commit 95a5029010
4 changed files with 36 additions and 31 deletions
+4 -2
View File
@@ -6,12 +6,14 @@
const interfaceUrl = window._CONFIG.interfaceUrl + '/laws-sinotruk/' //本地
// const interfaceUrl = 'https://srms.foton.com.cn/api/' //线上
const uploadFilePath = '/laws-sinotruk/onlyoffice/upload'
const uploadFilePath = '/laws-sinotruk/onlyoffice/upload' // 上传文件地址
const downloadFilePath = window._CONFIG.downloadUrl + '/laws-sinotruk/onlyoffice/downLoadFile' // 下载文件地址
const staticFilePath = window._CONFIG.interfaceUrl + '/laws-sinotruk/onlyoffice/downLoadFile' //本地
// const staticFilePath = 'https://srms.foton.com.cn/api/att/attFile/downloadFile' //线上
module.exports = {
interfaceUrl,
uploadFilePath,
staticFilePath
staticFilePath,
downloadFilePath
}
+2 -2
View File
@@ -567,9 +567,9 @@ export default {
}).then(res => {
this.loading = false
console.log(res)
this.imageUrl = this.staticFilePath + '?path=' + res.result.url
this.imageUrl = this.downloadFilePath + '?path=' + res.result.url
const img = new Image()
img.src = this.staticFilePath + '?path=' + res.result.url
img.src = this.downloadFilePath + '?path=' + res.result.url
if (img.complete) {
this.imgOrigin = {
width: img.width,
+3 -2
View File
@@ -1,7 +1,7 @@
import Vue from 'vue'
import App from './App.vue'
import { interfaceUrl, uploadFilePath, staticFilePath } from '@/config'
import { interfaceUrl, uploadFilePath, staticFilePath, downloadFilePath } from '@/config'
// eslint-disable-next-line import/extensions
import '@/core/use.js'
import axios from '../../plugins/axios2'
@@ -9,11 +9,12 @@ import store from '@/store'
Vue.prototype.interfaceUrl = interfaceUrl
Vue.prototype.uploadFilePath = uploadFilePath
Vue.prototype.downloadFilePath = downloadFilePath
Vue.prototype.staticFilePath = staticFilePath
Vue.prototype.$axios = axios
Vue.config.productionTip = false
new Vue({
store,
render: (h) => h(App),
render: (h) => h(App)
}).$mount('#app')