Cumulative Rewards
-
+
+
+
+
+
+
+

+
× 1
+
+
5 Days
+
+
+
+
+
+
+
+

+
× 2
+
+
10 Days
+
+
+
+
+
+
+
+

+
× 3
+
+
20 Days
+
+
+
+
+
+
+
+

+
× 4
+
+
30 Days
+
+
+
+
Bonus Rewards
-
+
+
+
+
+
+
+

+
× 1
+
+
3 Days
+
+
+
+
+
+
+
+

+
× 2
+
+
7 Days
+
+
+
+
+
+
+
+

+
× 3
+
+
15 Days
+
+
+
+
+
+
+
+

+
× 4
+
+
30 Days
+
+
+
+
@@ -395,7 +487,7 @@
-
+
@@ -503,7 +595,7 @@ export default {
],
navIndex: 0,
walletDialogVisible: false,
- gameStateData: [],
+ gameStateData: {},
activityName: "",
activityId: "uaw_activity",
isWallet: false,
@@ -795,6 +887,11 @@ export default {
this.ExploreDialogVisible = true
},
+ // // 开宝箱奖励
+ // boxAwardDialog(val) {
+
+ // },
+
// 关闭奖励弹窗
ExploreHandleClose() {
this.ExploreDialogVisible = false;
@@ -919,16 +1016,29 @@ export default {
},
// 复制链接
- copyLink(text) {
- let url = `http://192.168.100.216:8030/home/new=${text}/box=undefined/id=undefined`;
- let oInput = document.createElement("input");
- oInput.value = url;
- document.body.appendChild(oInput);
- oInput.select();
- document.execCommand("Copy");
- oInput.className = "oInput";
- oInput.style.display = "none";
- this.$message.success("Copy succeeded");
+ copyLinkCode() {
+ if(this.token) {
+ let text = this.userData.code
+ let url = `http://192.168.100.216:8030/home/new=${text}/box=undefined/id=undefined`;
+ let oInput = document.createElement("input");
+ oInput.value = url;
+ document.body.appendChild(oInput);
+ oInput.select();
+ document.execCommand("Copy");
+ oInput.className = "oInput";
+ oInput.style.display = "none";
+ this.$message.success("Copy succeeded");
+ } else {
+ this.walletDialogVisible = true
+ }
+
+ },
+ isLogin() {
+ if(this.token) {
+ this.logDialogVisible = true
+ } else {
+ this.walletDialogVisible = true
+ }
},
// nav 导航
@@ -1338,7 +1448,7 @@ export default {
.bar {
margin-bottom: 10px;
.bar-top {
-
+ display: flex;
}
.bar-btm {
font-size: 10px;
@@ -2022,6 +2132,10 @@ export default {
z-index: 1;
}
.light-btn{
+ background: #ffc35b;
+ color: #000;
+ padding: 5px 10px;
+ border-radius: 20px;
cursor: pointer;
}
.Explore-dialog {
diff --git a/src/views/home/logDialog.vue b/src/views/home/logDialog.vue
index aaad0c3..4a58bc9 100644
--- a/src/views/home/logDialog.vue
+++ b/src/views/home/logDialog.vue
@@ -65,13 +65,14 @@ export default {
return {
logPageSize: 6,
logCurrentPage: 1,
- invitationList: [
- {
- level: 1, // 段位
- nickname: "用户昵称",
- score: 100 // 获得的积分
- }
- ],
+ // invitationList: [
+ // {
+ // level: 1, // 段位
+ // nickname: "用户昵称",
+ // score: 100 // 获得的积分
+ // }
+ // ],
+ invitationList: [],
};
},
computed: {