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.
36 lines
622 B
36 lines
622 B
|
2 months ago
|
<template>
|
||
|
|
<view>
|
||
|
|
<view class="text">长按识别二维码,查看教程</view>
|
||
|
|
<view class="img-box">
|
||
|
|
<img show-menu-by-longpress="true" src="https://jewel-shop.oss-cn-beijing.aliyuncs.com/d4d0045fe855414b82916a741e4251cc.jpg" alt="" />
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
data() {
|
||
|
|
return {}
|
||
|
|
},
|
||
|
|
methods: {}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss">
|
||
|
|
.text{
|
||
|
|
font-size: 40rpx;
|
||
|
|
text-align: center;
|
||
|
|
height: 600rpx;
|
||
|
|
line-height: 600rpx;
|
||
|
|
}
|
||
|
|
.img-box{
|
||
|
|
width: 500rpx;
|
||
|
|
height: 500rpx;
|
||
|
|
margin: 0 auto;
|
||
|
|
img{
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
background-size: 100%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|