fix 插入图片
This commit is contained in:
+27
-25
@@ -1,34 +1,36 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||
<title><%= htmlWebpackPlugin.options.title %></title>
|
||||
<script type="text/javascript" src="/v1/plugins.js"></script>
|
||||
<script type="text/javascript" src="/v1/plugins-ui.js"></script>
|
||||
<link rel="stylesheet" href="/v1/plugins.css">
|
||||
<!-- 全局配置 -->
|
||||
<% if (process.env.NODE_ENV === 'development' ) { %>
|
||||
<script>
|
||||
window._CONFIG = {
|
||||
'interfaceUrl': 'http://139.9.235.66:8184',
|
||||
};
|
||||
</script>
|
||||
<% } %>
|
||||
<% if (process.env.NODE_ENV === 'production' ) { %>
|
||||
<script>
|
||||
window._CONFIG = {
|
||||
'interfaceUrl': 'http://laws-sinotruk-server-kmc2c.yf-grp:8080',
|
||||
};
|
||||
</script>
|
||||
<% } %>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||
<title><%= htmlWebpackPlugin.options.title %></title>
|
||||
<script type="text/javascript" src="/v1/plugins.js"></script>
|
||||
<script type="text/javascript" src="/v1/plugins-ui.js"></script>
|
||||
<link rel="stylesheet" href="/v1/plugins.css">
|
||||
<!-- 全局配置 -->
|
||||
<% if (process.env.NODE_ENV === 'development' ) { %>
|
||||
<script>
|
||||
window._CONFIG = {
|
||||
'interfaceUrl': 'http://139.9.235.66:8184',
|
||||
'downloadUrl': 'http://139.9.235.66:8184'
|
||||
}
|
||||
</script>
|
||||
<% } %>
|
||||
<% if (process.env.NODE_ENV === 'production' ) { %>
|
||||
<script>
|
||||
window._CONFIG = {
|
||||
'interfaceUrl': 'http://laws.sinotruk.com',
|
||||
'downloadUrl': 'http://laws-sinotruk-server-kmc2c.yf-grp:8080'
|
||||
}
|
||||
</script>
|
||||
<% } %>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>
|
||||
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
|
||||
Please enable it to continue.</strong>
|
||||
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
|
||||
Please enable it to continue.</strong>
|
||||
</noscript>
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
|
||||
+4
-2
@@ -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
|
||||
}
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user