添加默认查询范围

This commit is contained in:
Shikong 2023-03-16 17:20:25 +08:00
parent b98b01f05c
commit 4a4b3d745d

View File

@ -63,7 +63,10 @@ context.moveTo(-4, width - 4);
context.lineTo(width / 2, 6);
context.lineTo(width + 4, width - 4);
context.stroke();
const date = ref({})
const date = ref({
from: moment().startOf('d').format("YYYY-MM-DD HH:mm:ss"),
to: moment().format("YYYY-MM-DD HH:mm:ss"),
})
const feature = reactive({
showFixed: false
})