You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
363 B
26 lines
363 B
<template>
|
|
<view class="container">
|
|
<image style="width:100%" :show-menu-by-longpress="true" :src="base.imgHost('hr1.png')" mode="widthFix" alt=""/>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default{
|
|
data(){
|
|
return{
|
|
}
|
|
},
|
|
onLoad() {
|
|
},
|
|
methods:{
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.container{
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
</style> |