|
@@ -63,6 +63,7 @@ const tableColumns = [
|
|
|
const props = defineProps({
|
|
|
visible: Boolean,
|
|
|
data: Object,
|
|
|
+ timeParams: Object,
|
|
|
});
|
|
|
const emit = defineEmits(['close']);
|
|
|
|
|
@@ -77,6 +78,8 @@ const transParams = computed(() => {
|
|
|
type: props.data?.type,
|
|
|
month: props.data?.month,
|
|
|
year: props.data?.year,
|
|
|
+ startTime: props.timeParams.startTime,
|
|
|
+ endTime: props.timeParams.endTime,
|
|
|
};
|
|
|
});
|
|
|
|