1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <view class="account">
- <image show-menu-by-longpress="true" mode="widthFix" src="http://125.71.216.35:9001/education/oa/official_account.jpg" ></image>
- <view class="accountText">
- 1. 长按二维码,可进入公众号。<br>
- 2. 建议您关注公众号,用于离开后,接收消息。
- </view>
- </view>
- </template>
- <script>
- export default {
-
- }
- </script>
- <style>
- page{
- height: 100%;
- /* background-color: #FFF; */
- }
- .account{
- /* background-color: #FFF2CC; */
- width: 100%;
- height: 100%;
- justify-content: center;
- text-align: center;
- /* margin-top: 40rpx; */
- padding-top: 40rpx;
- }
- .accountText{
- margin: 40rpx;
- color: gray;
- }
- </style>
|