1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <template>
- <view>
- <view class="top">
- <!-- <uni-icons type="checkmarkempty" size="100"></uni-icons> -->
- <image src="../../static/sucuss.svg" mode="" class="img"></image>
- <view class="title">提交成功</view>
- <text class="tip">非常感谢您提交信息,如需深入了解我们请您点击<br/>“了解更多”</text>
- <button class="btn" type="primary" @click="more" plain="true">了解更多</button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
- more(){
- let url = 'https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MzIwMDc2ODMwMw==#wechat_redirect';
- window.location.href = url
- }
- }
- }
- </script>
- <style>
- .img{
- width: 100rpx;
- height: 100rpx;
- }
- .top{
- margin-top: 200rpx;
- text-align: center;
- }
- .title{
- font-size: 38rpx;
- margin: 40rpx 0 20rpx 0;
- }
- .tip{
- color: #999;
- }
- .btn{
- margin-top: 150rpx;
- width: 30%;
- background: #fff;
- }
- </style>
|