|
@@ -40,10 +40,11 @@ export default {
|
|
async sign() {
|
|
async sign() {
|
|
let res = await userSign();
|
|
let res = await userSign();
|
|
this.signData = res;
|
|
this.signData = res;
|
|
- this.signList.forEach(item => {
|
|
|
|
|
|
+ this.signList.forEach((item,index) => {
|
|
if (item.day <= res.days) {
|
|
if (item.day <= res.days) {
|
|
item.iconType = 'checked';
|
|
item.iconType = 'checked';
|
|
}
|
|
}
|
|
|
|
+ item.fee = res.day_list[index];
|
|
});
|
|
});
|
|
|
|
|
|
},
|
|
},
|