submit-success.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <template>
  2. <view>
  3. <u-navbar :is-back="false" title="提交成功"></u-navbar>
  4. <view class="content">
  5. <image src="@/static/icon/success3.png" mode=""></image>
  6. <text class="tips">{{params.title}}</text>
  7. <button class="cu-btn round btn" @click="$jump(params.path)">
  8. 确认
  9. </button>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. params:{
  18. title:'资料提交成功,请耐心等待审核',
  19. path:'/pages/index/index'
  20. }
  21. }
  22. },
  23. onLoad(options) {
  24. if (this.$isNotEmpty(options.params)) {
  25. this.params=JSON.parse(options.params)
  26. }
  27. },
  28. methods: {
  29. }
  30. }
  31. </script>
  32. <style>
  33. page{
  34. background-color: #FFFFFF;
  35. }
  36. </style>
  37. <style lang="scss" scoped>
  38. .content{
  39. margin-top: 140rpx;
  40. display: flex;
  41. justify-content: center;
  42. align-items: center;
  43. flex-direction: column;
  44. image{
  45. width: 160rpx;
  46. height: 160rpx;
  47. }
  48. .tips{
  49. margin-top: 50rpx;
  50. color: #313131;
  51. font-size: 28rpx;
  52. }
  53. .btn{
  54. margin-top: 150rpx;
  55. background-color: #EF9944;
  56. color: #FFFFFF;
  57. width: 70%;
  58. padding: 44rpx;
  59. }
  60. }
  61. </style>