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 {
]
};
},
mounted() {
created() {
this.getstatus();
},
methods: {
......
......@@ -82,7 +82,13 @@ export default {
getProgressPrizes().then(res => {
if (res.code === 0) {
_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 {
_this.growthTotal = 0;
_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