scinote-web/app/javascript/vue/experiments/workflow_img_mixin.js

30 lines
730 B
JavaScript
Raw Normal View History

2024-01-23 22:20:12 +08:00
import axios from '../../packs/custom_axios.js';
export default {
mounted() {
const img = this.params.data ? this.params.data.workflow_img : this.params.workflow_img;
if (img) {
this.workflow_img = img;
} else {
this.loadExprimentWorflowImage();
}
},
data() {
return {
workflow_img: null,
imageLoading: false
};
},
methods: {
loadExprimentWorflowImage() {
const url = this.params.data ? this.params.data.urls.workflow_img : this.params.urls.workflow_img;
this.imageLoading = true;
axios.get(url)
.then((response) => {
this.workflow_img = response.data.workflowimg_url;
this.imageLoading = false;
});
}
}
};