diff --git a/Assets/_Scripts/Application/UI/ScoreDataPanel.cs b/Assets/_Scripts/Application/UI/ScoreDataPanel.cs index 3f651af..d2e9f57 100644 --- a/Assets/_Scripts/Application/UI/ScoreDataPanel.cs +++ b/Assets/_Scripts/Application/UI/ScoreDataPanel.cs @@ -71,6 +71,12 @@ namespace ZXK.LouDiXvMuNiu // 模块内容,三级任务名称,总成绩,实际成绩 Dictionary data = new Dictionary(); data.Add("name", _studentNameInF.text); + data.Add("id", _studentNumberInF.text); + data.Add("sum", _studentActualTxt.text); + DateTime curTime = DateTime.Now; + data.Add("time", curTime.ToString("YYYY.MM.dd")); + data.Add("year", curTime.Year); + data.Add("month", curTime.Month); foreach (var item in scoreQueue) { diff --git a/Data/Report/Demo.docx b/Data/Report/Demo.docx index e6fea53..b3693b1 100644 Binary files a/Data/Report/Demo.docx and b/Data/Report/Demo.docx differ