代码更新

This commit is contained in:
GaoHao
2025-03-12 14:13:29 +08:00
parent 2f1523d4e9
commit c2135c6119
105 changed files with 2026 additions and 278 deletions

View File

@@ -84,7 +84,7 @@
import datePickerview from './components/my-date-pickerview.vue'
import dayjs from 'dayjs' //时间格式库
import go from '@/commons/utils/go.js'
import { getTrade, productSaleDate } from '@/api/summary.js'
import { getTrade, productSaleDate } from '@/http/api/summary.js'
const timeList = [{
label: '今天',
@@ -150,8 +150,8 @@
endTime = e + ' 23:59:59'
}
getTrade({
beginTime: startTime,
endTime: endTime,
beginDate: startTime,
endDate: endTime,
}).then((res) => {
list.value = res
})

View File

@@ -24,7 +24,7 @@
<script setup>
import { onMounted, ref } from 'vue';
import { productSaleDate } from '@/api/summary.js'
import { productSaleDate } from '@/http/api/summary.js'
let tableList = ref([])
let props = defineProps({