xiabx před 5 roky
rodič
revize
72f7e42fa1
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      src/components/sign/index.ux

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

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