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