tapd相关修改更新

This commit is contained in:
GaoHao
2025-03-19 18:19:34 +08:00
parent 994cf8bf2b
commit f01bc839f7
53 changed files with 1084 additions and 1032 deletions

View File

@@ -124,8 +124,9 @@
* @param {Object} e
*/
function datePickerConfirm(e) {
pageData.tableData.query.beginDate = timeFormat(new Date(e.start.replaceAll('-', '/')).getTime())
pageData.tableData.query.endDate = timeFormat(new Date(e.end.replaceAll('-', '/')).getTime())
pageData.tableData.data = [];
pageData.query.beginDate = timeFormat(new Date(e.start.replaceAll('-', '/')).getTime())
pageData.query.endDate = timeFormat(new Date(e.end.replaceAll('-', '/')).getTime())
pageData.time.start = new Date(e.start.replaceAll('-', '/')).getTime()
pageData.time.end = new Date(e.end.replaceAll('-', '/')).getTime()
getTableData()