| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <template>
- <view class="content">
- <view class="text-area">
- <text class="top-line"></text>
- <view class="item">
- <!-- <image src="../../static/success.png" class="success-img"></image> -->
- <text class="success-text">授权获取code</text>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
-
- onLoad() {
-
- },
- onShow() {
- window.location.href ='https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxd87cbe1db0437303&redirect_uri=https%3A%2F%2Fchtech.ncjti.edu.cn%2Fhotel%2Fh5%2F%23%2Fpages%2Findex%2Findex&response_type=code&scope=snsapi_userinfo&state=123#wechat_redirect';
- },
- methods:{
-
- }
- }
-
- </script>
- <style>
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
-
- .text-area {
- display: flex;
- justify-content: center;
- }
- .top-line{
- margin-top: 0rpx;
- margin-left: 0;
- position: absolute;
- width: 750rpx;
- height: 1rpx;
- background: #CCCCCC;
- }
- .item{
- margin-top: 400rpx;
- text-align: center;
- width: 750rpx;
- height: 1206rpx;
- }
- .success-img{
- margin-left: 242rpx;
- margin-top: 73rpx;
- width: 261rpx;
- height: 266rpx;
- }
- .success-text{
- margin-left: 276rpx;
- margin-top: 433rpx;
- font-size: 49rpx;
- font-family: Microsoft YaHei-3970(82674968);
- font-weight: 400;
- color: #333333;
- }
- </style>
|