my_official_account.vue 695 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view class="account">
  3. <image show-menu-by-longpress="true" mode="widthFix" src="http://125.71.216.35:9001/education/oa/official_account.jpg" ></image>
  4. <view class="accountText">
  5. 1. 长按二维码,可进入公众号。<br>
  6. 2. 建议您关注公众号,用于离开后,接收消息。
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. }
  13. </script>
  14. <style>
  15. page{
  16. height: 100%;
  17. /* background-color: #FFF; */
  18. }
  19. .account{
  20. /* background-color: #FFF2CC; */
  21. width: 100%;
  22. height: 100%;
  23. justify-content: center;
  24. text-align: center;
  25. /* margin-top: 40rpx; */
  26. padding-top: 40rpx;
  27. }
  28. .accountText{
  29. margin: 40rpx;
  30. color: gray;
  31. }
  32. </style>