1234567891011121314151617181920212223242526272829303132 |
- <template>
- <view class="account">
- <image show-menu-by-longpress="true" mode="widthFix" src="@/static/official_account.jpg" ></image>
- <view class="accountText">
- 长按二维码可关注公众号
- </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-top: 40rpx;
- }
- </style>
|