12345678910111213141516171819202122232425262728293031 |
- <template>
- <view class="parents">
- <image src="https://minio.citupro.com/dev/static/wx.jpg" mode="aspectFit" show-menu-by-longpress="true" class="img-code"></image>
- <view class="tipsText">长按添加管家微信</view>
- </view>
- </template>
- <script setup>
- // 实习管家
- </script>
- <style lang="less" scoped>
- .parents{
- position: relative;
- background-color: #f8f8f8;
- }
- .img-code{
- width: 100%;
- height: 100vh;
- }
- .tipsText{
- position: absolute;
- top: 89%;
- right: 50%;
- transform: translate(50%, 0);
- text-align: center;
- color: #c2c5c7;
- font-size: 12px;
- font-weight: 700;
- }
- </style>
|