复盘:2023-07-25
TJundx

回顾目标

  • 阅读理解-结构分析
  • [/] 阅读理解-选项分析
  • 项目立项管理

评估结果

目标 完成度 不足 意外 输出
结构分析 80 没有按照所说的知识点去做题,就说按照以往的思路做题,因此导致错误很多。 - 虽然做题很多,但是错误很多,归根结底是没改变原来的思维,没有按照逻辑做题
项目管理基础 100 - - 简单了解了项目的特点、项目经理领导风格。
选项分析 0 不够时间完成,结构分析做题跟对答案花费时间太长。 - 按照知识点去做题 ,规划时间不合理

原因分析

追问为什么

成功的原因

-

失败的原因

  • 为什么结构分析做题错误率高?
    • 思维没改变,还是用旧思维去做题,没有用知识点去思考。
      • 看到题目就做,没有分析题目的结构、主体、主题等内容
        • 今后怎么做?
          • 不要贪快,慢慢运用知识点

总结规律

经验规律

从过程中学习到了什么?

  1. 安排时间计划不合理,应该及时调整
  2. 要用知识点去做题,不要贪快

有没类似案例验证规律?

  • 贪快就是重蹈覆辙,没有思考的做题。

下步行动

  • 运用知识点解题,而不是随意做题
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//【今日工作】获取

//日报文件名格式(定义成你自己的格式,替换其中的变量)
//yyyy = 年份(例如:2023)
//m = 自适应位数月份(例如:3、10)
//mm = 两位数月份(例如:03、10)
//d = 自适应位数日期(例如:3、10)
//dd = 两位数日期(例如:03、10)
let dailyWorkFileFormat = "日报:yyyy年m月d日";
//日报文件夹目录
let dailyWorkFilePath = "002.工作/工作记录/日报";


//获取当天日报
const fileToday = new Date(dv.current().create);
const file = dv.page(dailyWorkFilePath + "/" + formatDailyFileName(fileToday,dailyWorkFileFormat));
if(file != null){
dv.header("3","今日工作")
dv.taskList(file.file.tasks,false)
}
//文件名日期格式化
function formatDailyFileName(date,format){
const dateYear = date.getFullYear();
const dateMonth = date.getMonth() + 1;
const dateDate = date.getDate();
return format
.replace("yyyy",dateYear)
.replace("mm",dateMonth < 10 ? '0' + dateMonth : dateMonth)
.replace("m",dateMonth)
.replace("dd",dateDate < 10 ? '0' + dateDate : dateDate)
.replace("d",dateDate)
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//【今日文章】获取
//获取当天创建的文件
const fileToday = new Date(dv.current().create);
const todayFileArray = dv.pages().where(file => {
const fileDate = new Date(file.file.cday);
return (fileDate.getDate() == fileToday.getDate() && fileDate.getMonth() == fileToday.getMonth() && fileDate.getFullYear() && fileToday.getFullYear());
})

if(todayFileArray.length > 0){
dv.header("3","今日文章")
}
for(var i = 0;i<todayFileArray.length;i++){
dv.el("li","[[ " + todayFileArray[i].file.path + "|"+todayFileArray[i].file.name+" ]]\n");
}
Powered by Hexo & Theme Keep
Total words 36.5k Unique Visitor Page View