51 lines
734 B
Vue
51 lines
734 B
Vue
<template>
|
|
<view class="que" v-if="show">
|
|
<image src="/static/index/procurement/que.png" mode="aspectFill"></image>
|
|
<view>{{cont}}</view>
|
|
</view>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
cont: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
show: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
.que {
|
|
position: fixed;
|
|
top: 9%;
|
|
left: 12%;
|
|
width: 76%;
|
|
height: 88%;
|
|
z-index: 100;
|
|
background-color: #eff0f4;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
|
|
image {
|
|
width: 16.3vw;
|
|
height: 16.3vw;
|
|
}
|
|
|
|
view {
|
|
text-align: center;
|
|
font-weight: 300;
|
|
font-size: 1.4vw;
|
|
color: #555555;
|
|
}
|
|
}
|
|
|
|
</style> |