完善用户信息,保存积分详情记录

master
382696293@qq.com 2 years ago
parent 14dc34dc86
commit 248e672f19

@ -201,8 +201,8 @@ public class WxUserMemberServiceImpl implements IWxUserMemberService {
// 保存积分详情 // 保存积分详情
WxUserIntegralLog wxUserIntegralLog = new WxUserIntegralLog(); WxUserIntegralLog wxUserIntegralLog = new WxUserIntegralLog();
wxUserIntegralLog.setUserId(SecurityUtils.getLoginUser().getWxUserMember().getId()); wxUserIntegralLog.setUserId(SecurityUtils.getLoginUser().getWxUserMember().getId());
wxUserIntegralLog.setUserName(SecurityUtils.getLoginUser().getWxUserMember().getNickname()); wxUserIntegralLog.setUserName(userMemberUpdateVo.getNickname());
wxUserIntegralLog.setUserPhone(SecurityUtils.getLoginUser().getWxUserMember().getMobile()); wxUserIntegralLog.setUserPhone(wxUserMember.getMobile());
wxUserIntegralLog.setSource("1"); wxUserIntegralLog.setSource("1");
wxUserIntegralLog.setFloatScore(integralGlobal.getIntegral()); wxUserIntegralLog.setFloatScore(integralGlobal.getIntegral());
wxUserIntegralLog.setRemarkContent("首次完善用户信息"); wxUserIntegralLog.setRemarkContent("首次完善用户信息");

@ -2175,8 +2175,8 @@ export default {
) )
.then(() => { .then(() => {
delMember(this.ids).then((Response) => { delMember(this.ids).then((Response) => {
this.$modal.msgSuccess('批量删除会员成功') this.$modal.msgSuccess('批量删除会员成功');
this.cancelIntegralDialog(true) this.getList();
}) })
}) })
.catch(() => { .catch(() => {

Loading…
Cancel
Save