Compare commits
2 Commits
46d91fb241
...
5a346e1b2d
| Author | SHA1 | Date |
|---|---|---|
|
|
5a346e1b2d | |
|
|
ededbacb4b |
|
|
@ -42,7 +42,7 @@
|
|||
</template>
|
||||
<script setup lang="ts">
|
||||
import {onMounted, ref} from "vue";
|
||||
import {formatDateArray, getThisMonth, getToday} from "@/utils/dateUtils.ts";
|
||||
import {formatDateArray, getEndOfDay, getThisMonth, getToday} from "@/utils/dateUtils.ts";
|
||||
import {post} from "@/utils/request.ts";
|
||||
import DetailList from "@/components/social/reconciliation/DetailList.vue";
|
||||
import {ElMessage} from "element-plus";
|
||||
|
|
@ -51,6 +51,7 @@ import {reconciliationResult} from "../../assets/config/constants.ts";
|
|||
const selectDate = ref<any>();
|
||||
const changeDate = (dates: Date[]) => {
|
||||
selectDate.value = formatDateArray(dates);
|
||||
selectDate.value[1] = getEndOfDay(selectDate.value[1])
|
||||
console.log(selectDate.value);
|
||||
getList()
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue