This commit is contained in:
du.meimei
2025-04-17 18:29:39 +08:00
parent b2c177aab1
commit 67e77015b4

View File

@@ -123,8 +123,8 @@ export default {
// // 上传状态
// documentStatus: this.form.documentStatus,
// // 任务时间
startCreatedDate: this.formattedDate[0] + ' 00:00:00',
endCreatedDate: this.formattedDate[1] + ' 23:59:59',
startCreatedDate: this.formattedDate.length > 1 ? this.formattedDate[0] + ' 00:00:00' : this.formattedDate[0],
endCreatedDate: this.formattedDate.length > 1 ? this.formattedDate[1] + ' 23:59:59' : this.formattedDate[1],
knowledgeNameLike: this.form.knowledgeName,
documentStatus: this.form.documentStatus
}