result.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <template>
  2. <view class="content" :style="{'height':h+'px'}">
  3. <!-- <view class="top">
  4. <image src="../../static/imgs/icon_left_jt.png" @click="back"></image>
  5. <text>申请专项演示方案</text>
  6. </view> -->
  7. <image src="../../static/imgs/img_success.png" class="succ"></image>
  8. <view class="msg">提交成功!</view>
  9. <view class="tip">我们将会尽快安排专业人员与您联系。</view>
  10. <view class="return" @click="returnHome">返回首页</view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data(){
  16. return {
  17. }
  18. },
  19. methods:{
  20. back(){
  21. uni.reLaunch({
  22. url:'/pages/consult/apply'
  23. })
  24. },
  25. returnHome(){
  26. uni.reLaunch({
  27. url:'/pages/index/index'
  28. })
  29. }
  30. }
  31. }
  32. </script>
  33. <style scoped lang="less">
  34. .content{
  35. display: flex;
  36. flex-direction: column;
  37. align-items: center;
  38. position: relative;
  39. .top{
  40. margin-top: 24rpx;
  41. width: 100%;
  42. height: 42rpx;
  43. display: flex;
  44. align-items: center;
  45. justify-content: center;
  46. position: relative;
  47. text{
  48. font-family: PingFangSC, PingFang SC;
  49. font-weight: 400;
  50. font-size: 30rpx;
  51. color: #111111;
  52. line-height: 42rpx;
  53. }
  54. image{
  55. width: 42rpx;
  56. height: 42rpx;
  57. position: absolute;
  58. top: 0;
  59. left: 30rpx;
  60. }
  61. }
  62. .succ{
  63. width: 148rpx;
  64. height: 148rpx;
  65. margin-top: 90rpx;
  66. }
  67. .msg{
  68. font-family: PingFang-SC, PingFang-SC;
  69. font-weight: bold;
  70. font-size: 32rpx;
  71. color: #111111;
  72. line-height: 45rpx;
  73. margin-top: 37rpx;
  74. }
  75. .tip{
  76. font-family: PingFangSC, PingFang SC;
  77. font-weight: 400;
  78. font-size: 28rpx;
  79. color: #666666;
  80. line-height: 40rpx;
  81. margin-top: 28rpx;
  82. }
  83. .return{
  84. width: calc(100% - 80rpx);
  85. height: 80rpx;
  86. background: #1460CA;
  87. border-radius: 12rpx;
  88. font-family: PingFang-SC, PingFang-SC;
  89. font-weight: bold;
  90. font-size: 32rpx;
  91. color: #FFFFFF;
  92. line-height: 80rpx;
  93. text-align: center;
  94. letter-spacing: 2rpx;
  95. position: absolute;
  96. left: 40rpx;
  97. bottom: 316rpx;
  98. }
  99. }
  100. </style>