|
@@ -86,7 +86,11 @@ export default {
|
|
.then((res) => {
|
|
.then((res) => {
|
|
if (res.success) {
|
|
if (res.success) {
|
|
if (!res.data.bargainingStatus) {
|
|
if (!res.data.bargainingStatus) {
|
|
- this.$router.push('/claimCloudPhone/1?menuRuleId=' + data.id);
|
|
|
|
|
|
+ let url = '/claimCloudPhone/1?menuRuleId=' + data.id
|
|
|
|
+ if(this.$route.query.userCardId) {
|
|
|
|
+ url += `&userCardId=${this.$route.query.userCardId}`
|
|
|
|
+ }
|
|
|
|
+ this.$router.push(url);
|
|
} else {
|
|
} else {
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
this.$toast('已参加正在砍价活动,请退出后重新进入');
|
|
this.$toast('已参加正在砍价活动,请退出后重新进入');
|