21 lines
335 B
Vue
21 lines
335 B
Vue
<template>
|
|
<view class="main">
|
|
<image class="img" src="https://eshangtech.com/minTestImg/金融.jpg" />
|
|
</view>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
};
|
|
</script>
|
|
<style scoped lang="less">
|
|
.main {
|
|
width: 100vw;
|
|
.img {
|
|
width: 100vw;
|
|
height: calc(100vw * (4095 / 1260));
|
|
}
|
|
}
|
|
</style> |