feat: 筛选时间条件增加时分秒

This commit is contained in:
GaoHao
2025-04-09 18:27:35 +08:00
parent d4c4989b26
commit dce9fa7cdb
3 changed files with 26 additions and 13 deletions

View File

@@ -562,6 +562,9 @@ export default {
async summarytrade() {
try {
this.tradeLoading = true;
if( this.query.createdAt[1] ){
this.query.createdAt.splice(1,1,this.query.createdAt[1].replace("00:00:00","23:59:59"))
}
const res = await dataSummaryApi.trade({
beginDate: this.query.createdAt[0],
endDate: this.query.createdAt[1],