2019-10-29 06:46:44 +00:00
|
|
|
const Vue = require('vue');
|
2019-10-31 11:43:04 +00:00
|
|
|
const config = require('../config');
|
|
|
|
|
2019-10-29 06:46:44 +00:00
|
|
|
const imageSrc = {
|
|
|
|
methods: {
|
2019-10-31 11:43:04 +00:00
|
|
|
getEmailSrc(image) {
|
2019-10-29 06:46:44 +00:00
|
|
|
let src = `cid:${image}`;
|
|
|
|
|
|
|
|
if (this.isPreview === 'true')
|
|
|
|
src = `/api/assets/${this.$options.name}/images/${image}`;
|
|
|
|
|
|
|
|
return src;
|
2019-10-31 11:43:04 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
getReportSrc(image) {
|
|
|
|
const assetsPath = `${config.app.host}/api/assets`;
|
|
|
|
const imagePath = `${assetsPath}/${this.$options.name}/images/${image}`;
|
|
|
|
console.log(imagePath);
|
|
|
|
return imagePath;
|
2019-10-29 06:46:44 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
Vue.mixin(imageSrc);
|