45 lines
613 B
Vue
45 lines
613 B
Vue
<template>
|
|
<view>
|
|
<view class="que" :style="style">
|
|
<image src="/static/index/procurement/que.png" mode="aspectFill"></image>
|
|
<view>{{cont}}</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props:{
|
|
cont:'',
|
|
style:{}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
.que{
|
|
width: 16vw;
|
|
height: 16vw;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
margin: auto;
|
|
image{
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
view{
|
|
width: 100%;
|
|
text-align: center;
|
|
position: absolute;
|
|
bottom: 0.5vw;
|
|
left: 0;
|
|
font-weight: 300;
|
|
font-size: 1.4vw;
|
|
color: #555555;
|
|
}
|
|
}
|
|
</style>
|