my_official_account.vue 572 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view class="account">
  3. <image show-menu-by-longpress="true" mode="widthFix" src="@/static/official_account.jpg" ></image>
  4. <view class="accountText">
  5. 长按二维码可关注公众号
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. }
  12. </script>
  13. <style>
  14. page{
  15. height: 100%;
  16. /* background-color: #FFF; */
  17. }
  18. .account{
  19. /* background-color: #FFF2CC; */
  20. width: 100%;
  21. height: 100%;
  22. justify-content: center;
  23. text-align: center;
  24. /* margin-top: 40rpx; */
  25. padding-top: 40rpx;
  26. }
  27. .accountText{
  28. margin-top: 40rpx;
  29. }
  30. </style>