diff --git a/src/views/home/awardDialog.vue b/src/views/home/awardDialog.vue
index 1a3e529..f5d4511 100644
--- a/src/views/home/awardDialog.vue
+++ b/src/views/home/awardDialog.vue
@@ -35,7 +35,7 @@
- X {{ level2.amount }}
+ X {{ level2.length }}
@@ -45,7 +45,7 @@
- X {{ level3.amount }}
+ X {{ level3.length }}
@@ -55,7 +55,7 @@
- X {{ level4.amount }}
+ X {{ level4.length }}
diff --git a/src/views/home/boxBtm.vue b/src/views/home/boxBtm.vue
index 7bf5878..abfc78e 100644
--- a/src/views/home/boxBtm.vue
+++ b/src/views/home/boxBtm.vue
@@ -208,8 +208,7 @@

- {{ scope.row.address.slice(0,4) }}
- {{ '……'+scope.row.username }}
+ {{ scope.row.username }}
@@ -384,7 +383,7 @@ export default {
async getMyBoxList() {
let res = await this.$axios
.get(process.env.VUE_APP_API_URL+"/api/chest/list", {
- params: "",
+ params: {},
headers: { Authorization: `Bearer ${this.token}` }
})
this.boxList = res.data.data
diff --git a/src/views/home/helpDialog.vue b/src/views/home/helpDialog.vue
index 7184e04..a7a9e9b 100644
--- a/src/views/home/helpDialog.vue
+++ b/src/views/home/helpDialog.vue
@@ -235,7 +235,7 @@ export default {
this.$emit('handleClose')
} else {
// 8、关闭助力弹窗
- this.awardData = {data, isNewUser: this.isNewUser}
+ this.awardData = {...data, isNewUser: this.isNewUser}
this.$emit('awardDialog', this.awardData)
this.$emit('handleClose')
}