|
@@ -1,21 +1,21 @@
|
|
|
<template>
|
|
|
<layout
|
|
|
- bgImgName="purchase-img"
|
|
|
+ :bgImgName="currentLoading ? 'purchase-img' : ''"
|
|
|
bgColor="#FDF2E3"
|
|
|
- bgHeight="188"
|
|
|
+ bgHeight="219"
|
|
|
@goBack="goBack"
|
|
|
>
|
|
|
- <div class="purchase">
|
|
|
+ <div class="purchase" v-if="currentLoading">
|
|
|
<div class="purchase-privilege">
|
|
|
<div>
|
|
|
<img src="@/assets/image/claimCloudPhone/privilege-1.png" alt="" />
|
|
|
应用预装已完成
|
|
|
</div>
|
|
|
- <div>
|
|
|
+ <div style="animation-delay: 1s">
|
|
|
<img src="@/assets/image/claimCloudPhone/privilege-2.png" alt="" />
|
|
|
任意下单
|
|
|
</div>
|
|
|
- <div>
|
|
|
+ <div style="animation-delay: 1.5s">
|
|
|
<img src="@/assets/image/claimCloudPhone/privilege-3.png" alt="" />
|
|
|
立即使用云机
|
|
|
</div>
|
|
@@ -88,7 +88,7 @@
|
|
|
</div>
|
|
|
<div class="payment-container-agreement">
|
|
|
购买前阅读<span @click="toAgreement">
|
|
|
- 《双子星云手机类型服务协议》
|
|
|
+ 《双子星云手机服务协议》
|
|
|
</span>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -103,10 +103,7 @@
|
|
|
confirmButtonColor="#3367d1"
|
|
|
>
|
|
|
<div class="payment-tips">如果您已支付成功</div>
|
|
|
- <div
|
|
|
- class="payment-tips">
|
|
|
- 请点击"已完成支付"按钮
|
|
|
- </div>
|
|
|
+ <div class="payment-tips">请点击"已完成支付"按钮</div>
|
|
|
</van-dialog>
|
|
|
</div>
|
|
|
</layout>
|
|
@@ -307,7 +304,7 @@ export default {
|
|
|
.purchase {
|
|
|
height: 100%;
|
|
|
box-sizing: border-box;
|
|
|
- padding-top: 188px;
|
|
|
+ padding-top: 210px;
|
|
|
.purchase-privilege {
|
|
|
padding: 16px;
|
|
|
height: 102px;
|
|
@@ -317,6 +314,8 @@ export default {
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
& > div {
|
|
|
+ opacity: 0;
|
|
|
+ animation: purchase 0.5s forwards linear;
|
|
|
text-align: center;
|
|
|
font-family: PingFangSC, PingFang SC;
|
|
|
font-weight: 400;
|
|
@@ -529,7 +528,7 @@ export default {
|
|
|
font-weight: bold;
|
|
|
text-align: center;
|
|
|
padding-top: 10px;
|
|
|
- &:last-of-type{
|
|
|
+ &:last-of-type {
|
|
|
padding-bottom: 10px;
|
|
|
}
|
|
|
}
|
|
@@ -537,4 +536,14 @@ export default {
|
|
|
.disabled {
|
|
|
opacity: 0.3;
|
|
|
}
|
|
|
+
|
|
|
+@keyframes purchase {
|
|
|
+ 0% {
|
|
|
+ opacity: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ 100% {
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|