Browse Source

签到调整

xiabx 5 years ago
parent
commit
72f7e42fa1
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/components/sign/index.ux

+ 2 - 1
src/components/sign/index.ux

@@ -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];
     });
     });
    
    
 	},
 	},