@@ -12,9 +12,6 @@
rowKey="key"
:data-source="tableList"
:scroll="{ x: '100%', y: 'calc(100vh - 163px)' }">
- <!-- 额外的展开行 -->
- <template #expandedRowRender="{ }">
- </template>
</a-table>
</contextMenu>
</div>
@@ -72,7 +72,8 @@ export function handleReprotType(context: SetupContext) {
export function handleInitTypeAndTime() {
// 初始化时间
function getInitTime() {
- return moment(new Date()).format(reportCyleTimeType.day)
+ const yesterday = moment().add(-1, 'days')
+ return moment(yesterday).format(reportCyleTimeType.day)
}
// 初始化类型
function getInitType() {