后台:军团管理成员管理

This commit is contained in:
luying
2021-12-16 14:36:05 +08:00
parent 15b9d9f97a
commit 1628fd50b0
9 changed files with 79 additions and 12 deletions
+2 -2
View File
@@ -96,8 +96,8 @@ export class SendMailFun {
this.content = this.getContent(dicMail.content, params.params);
if(dicMail.title) this.title = dicMail.title;
if(dicMail.sendName) this.sendName = dicMail.sendName;
this.hasGoods = params.goods.length > 0;
this.goods = params.goods;
this.hasGoods = params.goods?.length > 0;
this.goods = params.goods||[];
}
getContent(content: string, params: string[]) {