123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <template>
- <view class="index">
- <navheader>藏品合成中</navheader>
- <view class="top">
- <view class="img">
- <image src="/static/my/1.gif" mode="widthFix" style="width: 500rpx;border-radius: 30rpx;"></image>
- </view>
- <view class="text">
- 藏品合成中...
- </view>
- <view class="name">
- <view class="">
- {{name}}
- </view>
- <!-- <view class="">
- 雷神
- </view> -->
- </view>
- </view>
- <view class="center">
- 藏品预计10分钟后合成成功,您可以到 <text @click="href('/pages/collection/collection')"> 我的藏品 </text> 中查看藏品状态
- </view>
- <view class="go" @click="totabar('/pages/market/market')">
- <image src="/static/my/03.png" mode="widthFix" style="width: 686rpx;"></image>
- </view>
- </view>
- </template>
- <script>
- import navheader from '@/components/my/nav_header.vue'
- export default {
- components: {
- navheader
- },
- data() {
- return {
- name: ''
- }
- },
- onLoad(e) {
- this.name = JSON.parse(e.name)
- },
- methods: {}
- }
- </script>
- <style scoped lang="less">
- .index {
- padding-top: 100rpx;
- color: #fff;
- }
- .top {
- padding-top: 156rpx;
- height: 880rpx;
- .img {
- width: 500rpx;
- height: 500rpx;
- margin: 0 auto;
- }
- .text {
- text-align: center;
- margin-top: 40rpx;
- font-size: 40rpx;
- font-weight: bold;
- letter-spacing: 2rpx;
- }
- .name {
- height: 186rpx;
- width: 686rpx;
- margin: 48rpx auto 0;
- border-radius: 48rpx 48rpx 0 0;
- text-align: center;
- >view:first-child {
- font-size: 36rpx;
- padding: 32rpx 0;
- }
- >view:last-child {
- font-size: 32rpx;
- padding-bottom: 32rpx;
- }
- }
- }
- .center {
- text-align: center;
- font-size: 32rpx;
- letter-spacing: 2rpx;
- width: 562rpx;
- margin: 0 auto 92rpx;
- text {
- color: #1E7BC6;
- padding: 0 10rpx;
- }
- }
- .go {
- margin: auto;
- width: 686rpx;
- }
- </style>
|