This commit is contained in:
cun-nan 2024-03-06 17:33:14 +08:00
parent 3429ec8cbb
commit e175eeda8a
2 changed files with 3 additions and 3 deletions

View File

@ -234,7 +234,7 @@ import {
delExchange, delExchange,
addExchange, addExchange,
updateExchange, updateExchange,
getqueryGoods getqueryGoods, exchangeInfo
} from '@/api/EventMarketing/cardExchange' } from '@/api/EventMarketing/cardExchange'
export default { export default {
@ -404,7 +404,7 @@ export default {
/** 修改按钮操作 */ /** 修改按钮操作 */
handleUpdate(row) { handleUpdate(row) {
this.reset() this.reset()
getExchange(row.id).then(res => { exchangeInfo(row.id).then(res => {
this.form = res.data this.form = res.data
}) })
// this.form = row // this.form = row

View File

@ -224,7 +224,7 @@ public class ActiveConsumptionServiceImpl extends ServiceImpl<ActiveConsumptionM
activeConsumptionVO.setDuihuanTotaled(duihuanTed); activeConsumptionVO.setDuihuanTotaled(duihuanTed);
TAccount accountInfoById = accountService.getAccountInfoById(Integer.parseInt(s.getCreateBy())); TAccount accountInfoById = accountService.getAccountInfoById(Integer.parseInt(s.getCreateBy()));
if (ObjectUtil.isNotEmpty(accountInfoById)) activeConsumption.setCreateBy(accountInfoById.getRealName()); if (ObjectUtil.isNotEmpty(accountInfoById)) activeConsumptionVO.setCreateBy(accountInfoById.getRealName());
return activeConsumptionVO; return activeConsumptionVO;
}).collect(Collectors.toList()); }).collect(Collectors.toList());
activeConsumptionVOSIPage.setRecords(activeConsumptionVOList); activeConsumptionVOSIPage.setRecords(activeConsumptionVOList);