weiximei 6 anni fa
parent
commit
679cc3b975

+ 1
- 1
CODE/smart-community/property-api/src/main/java/com/community/huiju/service/impl/TpActivitySignUpServiceImpl.java Vedi File

@@ -123,7 +123,7 @@ public class TpActivitySignUpServiceImpl extends ServiceImpl<TpActivitySignUpMap
123 123
         }
124 124
 
125 125
         tpActivitySignUpMapper.deleteById(tpActivitySignUp);
126
-        TpActivity tpActivity = tpActivityMapper.selectById(tpActivitySignUp.getId());
126
+        TpActivity tpActivity = tpActivityMapper.selectById(tpActivitySignUp.getActivityId());
127 127
         if (tpActivity.getSignUpCount().intValue() > 0) {
128 128
             tpActivity.setSignUpCount(tpActivity.getSignUpCount() - 1);
129 129
             tpActivityMapper.updateById(tpActivity);

+ 1
- 1
VUECODE/smart-property-manage/src/views/social/signUp/index.vue Vedi File

@@ -234,7 +234,7 @@ export default {
234 234
       })
235 235
 
236 236
       // 关闭弹窗
237
-      this.dialogTableVisible = false
237
+      this.dialogSMSVisible = false
238 238
     }
239 239
   }
240 240
 }