lcy
15 小时以前 b97ca7fc69d2cddeaf1af2d4e59ba4b413034784
59 邮件系统-客户端  邮件标题支持参数匹配
2个文件已修改
4 ■■■■ 已修改文件
Main/System/Mail/MailCell.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Main/System/Mail/MailInfoWin.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Main/System/Mail/MailCell.cs
@@ -29,7 +29,7 @@
        imgMask.SetActive(false);
        if (mailData.IsTemplateMail() && MailConfig.HasKey(mailData.GetTemplateKey()))
        {
            txtTitle.text = MailConfig.Get(mailData.GetTemplateKey()).Title;
            txtTitle.text = string.Format(MailConfig.Get(mailData.GetTemplateKey()).Title, mailData.GetTemplateParams()); ;
        }
        else
        {
Main/System/Mail/MailInfoWin.cs
@@ -127,7 +127,7 @@
                string content = string.Format(config.Content, templateParams.ToArray());
                txtNoAwardInfo.text = content;
                txtAwardInfo.text = content;
                txtTitle.text = config.Title;
                txtTitle.text = string.Format(config.Title, templateParams.ToArray());
            }
            catch (System.Exception ex)
            {