This commit is contained in:
cun-nan 2024-03-07 11:47:11 +08:00
parent 87732aaa2c
commit 78795abc73
2 changed files with 8 additions and 0 deletions

View File

@ -637,6 +637,10 @@ export default {
courtesyReward:[],
activeNewlywedsChildList:[],
}
this.form.tableDatas = []
this.tableDatas = []
this.pdidlist = []
this.pddhidlist = []
},
qrcodelook(url) {
this.loadingdialog = true

View File

@ -163,6 +163,10 @@ public class ActiveNewlywedsServiceImpl extends ServiceImpl<ActiveNewlywedsMappe
//获取新人有礼活动信息
LambdaQueryWrapper<ActiveNewlyweds> lambdaQueryWrapper = new LambdaQueryWrapper<>();
lambdaQueryWrapper.eq(ActiveNewlyweds::getStoreId,TokenUtil.getNowAccountInfo().getStoreId());
if (ObjectUtil.isNotEmpty(activeNewlywedss.getName()))
lambdaQueryWrapper.like(ActiveNewlyweds::getName,activeNewlywedss.getName());
if (ObjectUtil.isNotEmpty(activeNewlywedss.getIsonline()))
lambdaQueryWrapper.eq(ActiveNewlyweds::getIsonline,activeNewlywedss.getIsonline());
//ActiveNewlyweds activeNewlyweds = getOne(lambdaQueryWrapper);
IPage page1 = page(page, lambdaQueryWrapper);
List<ActiveNewlyweds> list = page1.getRecords();