Commit 9f60cc05 authored by leiqingsong's avatar leiqingsong

Merge branch 'master' of http://111.203.232.171:8888/Song/xitiansenmall into dev_lqs

parents ff748760 af6986b2
...@@ -99,7 +99,7 @@ export default { ...@@ -99,7 +99,7 @@ export default {
] ]
}; };
}, },
mounted() { created() {
this.getstatus(); this.getstatus();
}, },
methods: { methods: {
......
...@@ -82,7 +82,13 @@ export default { ...@@ -82,7 +82,13 @@ export default {
getProgressPrizes().then(res => { getProgressPrizes().then(res => {
if (res.code === 0) { if (res.code === 0) {
_this.growthTotal = res.data.growthTotal; _this.growthTotal = res.data.growthTotal;
_this.prizeVos = res.data.prizeVos; _this.prizeVos = res.data.prizeVos.map(item => {
const temp = item;
temp.userId =
item.userId.substring(0, 3) + "****" + item.userId.substring(7);
return temp;
});
// _this.prizeVos = res.data.prizeVos;
} else { } else {
_this.growthTotal = 0; _this.growthTotal = 0;
_this.prizeVos = []; _this.prizeVos = [];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment