synt.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <template>
  2. <view class="index">
  3. <navheader>藏品合成中</navheader>
  4. <view class="top">
  5. <view class="img">
  6. <image src="/static/my/1.gif" mode="widthFix" style="width: 500rpx;border-radius: 30rpx;"></image>
  7. </view>
  8. <view class="text">
  9. 藏品合成中...
  10. </view>
  11. <view class="name">
  12. <view class="">
  13. {{name}}
  14. </view>
  15. <!-- <view class="">
  16. 雷神
  17. </view> -->
  18. </view>
  19. </view>
  20. <view class="center">
  21. 藏品预计10分钟后合成成功,您可以到 <text @click="href('/pages/collection/collection')"> 我的藏品 </text> 中查看藏品状态
  22. </view>
  23. <view class="go" @click="totabar('/pages/market/market')">
  24. <image src="/static/my/03.png" mode="widthFix" style="width: 686rpx;"></image>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. import navheader from '@/components/my/nav_header.vue'
  30. export default {
  31. components: {
  32. navheader
  33. },
  34. data() {
  35. return {
  36. name: ''
  37. }
  38. },
  39. onLoad(e) {
  40. this.name = JSON.parse(e.name)
  41. },
  42. methods: {}
  43. }
  44. </script>
  45. <style scoped lang="less">
  46. .index {
  47. padding-top: 100rpx;
  48. color: #fff;
  49. }
  50. .top {
  51. padding-top: 156rpx;
  52. height: 880rpx;
  53. .img {
  54. width: 500rpx;
  55. height: 500rpx;
  56. margin: 0 auto;
  57. }
  58. .text {
  59. text-align: center;
  60. margin-top: 40rpx;
  61. font-size: 40rpx;
  62. font-weight: bold;
  63. letter-spacing: 2rpx;
  64. }
  65. .name {
  66. height: 186rpx;
  67. width: 686rpx;
  68. margin: 48rpx auto 0;
  69. border-radius: 48rpx 48rpx 0 0;
  70. text-align: center;
  71. >view:first-child {
  72. font-size: 36rpx;
  73. padding: 32rpx 0;
  74. }
  75. >view:last-child {
  76. font-size: 32rpx;
  77. padding-bottom: 32rpx;
  78. }
  79. }
  80. }
  81. .center {
  82. text-align: center;
  83. font-size: 32rpx;
  84. letter-spacing: 2rpx;
  85. width: 562rpx;
  86. margin: 0 auto 92rpx;
  87. text {
  88. color: #1E7BC6;
  89. padding: 0 10rpx;
  90. }
  91. }
  92. .go {
  93. margin: auto;
  94. width: 686rpx;
  95. }
  96. </style>