factory_web/src/views/enm_energy/energyPicture.vue

28 lines
653 B
Vue

<template>
<!-- <el-card style="height: 100%;background-image: url('/img/elec_flow.png');background-size: contain;background-repeat: no-repeat;"> -->
<el-card style="height: 100%;">
<img src="img/elec_flow.png" class="flowImg" style="max-height: 100%;width:50%;object-fit:contain;" >
</el-card>
</template>
<script>
export default {
data() {
return {
imgSrc:''
};
},
mounted() {
},
methods: {
}
};
</script>
<style>
.flowImg{
display: inline-block;
width: clac(100%-210px);
}
</style>