submit.vue 977 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <view>
  3. <view class="top">
  4. <!-- <uni-icons type="checkmarkempty" size="100"></uni-icons> -->
  5. <image src="../../static/sucuss.svg" mode="" class="img"></image>
  6. <view class="title">提交成功</view>
  7. <text class="tip">非常感谢您提交信息,如需深入了解我们请您点击<br/>“了解更多”</text>
  8. <button class="btn" type="primary" @click="more" plain="true">了解更多</button>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. }
  17. },
  18. methods: {
  19. more(){
  20. let url = 'https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MzIwMDc2ODMwMw==#wechat_redirect';
  21. window.location.href = url
  22. }
  23. }
  24. }
  25. </script>
  26. <style>
  27. .img{
  28. width: 100rpx;
  29. height: 100rpx;
  30. }
  31. .top{
  32. margin-top: 200rpx;
  33. text-align: center;
  34. }
  35. .title{
  36. font-size: 38rpx;
  37. margin: 40rpx 0 20rpx 0;
  38. }
  39. .tip{
  40. color: #999;
  41. }
  42. .btn{
  43. margin-top: 150rpx;
  44. width: 30%;
  45. background: #fff;
  46. }
  47. </style>