|
@@ -178,7 +178,8 @@
|
|
|
<template v-if="bargainingTipsBool">
|
|
|
<div class="bargaining-amount">
|
|
|
<div class="bargaining-amount-text">
|
|
|
- 恭喜您,砍价成功<span>{{ bargainingAmount }}元</span>
|
|
|
+ <div> 恭喜您</div>
|
|
|
+ 砍价成功<span>10.52元</span>
|
|
|
</div>
|
|
|
<lottie
|
|
|
class="species"
|
|
@@ -211,6 +212,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<img src="@/assets/image/claimCloudPhone/inviter-exit.png" alt="" />
|
|
|
+ <lottie class="exit-glory" :data="glory" :key="'exit-glory'" />
|
|
|
</div>
|
|
|
</van-dialog>
|
|
|
|
|
@@ -310,6 +312,14 @@
|
|
|
为您带来更多精彩的活动和内容。<br />
|
|
|
</div> -->
|
|
|
</van-dialog>
|
|
|
+ <van-dialog style="background: #fff !important" v-model="copyVisble" showCancelButton :showConfirmButton="false">
|
|
|
+ <div class="copy-visble">请手动复制以下内容</div>
|
|
|
+ <van-field
|
|
|
+ v-model="copyValue"
|
|
|
+ rows="4"
|
|
|
+ type="textarea"
|
|
|
+ />
|
|
|
+ </van-dialog>
|
|
|
<Verify
|
|
|
@success="success"
|
|
|
mode="pop"
|
|
@@ -394,6 +404,8 @@ export default {
|
|
|
species,
|
|
|
redPacket,
|
|
|
glory,
|
|
|
+ copyVisble: false,
|
|
|
+ copyValue: ''
|
|
|
};
|
|
|
},
|
|
|
components: {
|
|
@@ -745,17 +757,18 @@ export default {
|
|
|
if (this.$userAgent.isSzx || this.$userAgent.isSzxBrowser) {
|
|
|
this.$native.share(shareInfo);
|
|
|
} else {
|
|
|
- writeToClipboard(res.data.link)
|
|
|
- .then(() => {
|
|
|
+ writeToClipboard(
|
|
|
+ res.data.link,
|
|
|
+ () => {
|
|
|
setTimeout(() => {
|
|
|
this.$toast('链接复制成功');
|
|
|
});
|
|
|
- })
|
|
|
- .catch((err) => {
|
|
|
- setTimeout(() => {
|
|
|
- this.$toast('链接复制失败');
|
|
|
- });
|
|
|
- });
|
|
|
+ },
|
|
|
+ () => {
|
|
|
+ this.copyValue = res.data.link
|
|
|
+ this.copyVisble = true
|
|
|
+ },
|
|
|
+ );
|
|
|
}
|
|
|
}
|
|
|
})
|
|
@@ -932,12 +945,6 @@ export default {
|
|
|
}
|
|
|
height: 100%;
|
|
|
position: relative;
|
|
|
- /deep/ .van-overlay {
|
|
|
- z-index: 0 !important;
|
|
|
- }
|
|
|
- /deep/ .van-dialog {
|
|
|
- z-index: 0 !important;
|
|
|
- }
|
|
|
.inviter-tips,
|
|
|
.invitee-tips {
|
|
|
font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
|
|
@@ -1258,6 +1265,9 @@ export default {
|
|
|
font-size: 14px;
|
|
|
color: #6d2b12;
|
|
|
text-align: center;
|
|
|
+ overflow: hidden;
|
|
|
+ white-space: nowrap;
|
|
|
+ text-overflow: ellipsis;
|
|
|
font-style: normal;
|
|
|
}
|
|
|
}
|
|
@@ -1419,7 +1429,7 @@ export default {
|
|
|
font-weight: bold;
|
|
|
font-size: 24px;
|
|
|
color: #ffffff;
|
|
|
- line-height: 20px;
|
|
|
+ line-height: 30px;
|
|
|
text-align: center;
|
|
|
font-style: normal;
|
|
|
span {
|
|
@@ -1434,10 +1444,21 @@ export default {
|
|
|
height: 520px;
|
|
|
position: relative;
|
|
|
& > img {
|
|
|
- height: 100%;
|
|
|
- width: 100%;
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ height: 321px;
|
|
|
+ width: 284px;
|
|
|
+ z-index: -1;
|
|
|
+ }
|
|
|
+ .exit-glory {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%) scale(1.5);
|
|
|
+ z-index: -2;
|
|
|
}
|
|
|
-
|
|
|
.exit-content {
|
|
|
position: absolute;
|
|
|
top: 25%;
|
|
@@ -1451,6 +1472,7 @@ export default {
|
|
|
font-style: normal;
|
|
|
font-weight: bold;
|
|
|
font-size: 16px;
|
|
|
+ z-index: 0;
|
|
|
& > div span {
|
|
|
color: #f04646;
|
|
|
}
|
|
@@ -1673,4 +1695,12 @@ export default {
|
|
|
.mb-24 {
|
|
|
margin-bottom: 24px !important;
|
|
|
}
|
|
|
+
|
|
|
+.mask {
|
|
|
+ z-index: 4000;
|
|
|
+}
|
|
|
+
|
|
|
+.copy-visble {
|
|
|
+ padding: 16px;
|
|
|
+}
|
|
|
</style>
|