# Conflicts:
#	src/views/crm/statistics/performance/components/ContractCountPerformance.vue
#	src/views/crm/statistics/performance/components/ContractPricePerformance.vue
#	src/views/crm/statistics/performance/components/ReceivablePricePerformance.vue
#	src/views/crm/statistics/performance/index.vue
This commit is contained in:
YunaiV 2024-05-11 22:22:27 +08:00
commit 8ba6095b1b
4 changed files with 140 additions and 187 deletions

View File

@ -1,5 +1,4 @@
<!-- 员工业绩统计 --> <!-- 员工业绩统计 -->
<!-- TODO @scholar:参考 ReceivablePricePerformance 建议改 -->
<template> <template>
<!-- Echarts图 --> <!-- Echarts图 -->
<el-card shadow="never"> <el-card shadow="never">
@ -11,15 +10,9 @@
<!-- 统计列表 --> <!-- 统计列表 -->
<el-card shadow="never" class="mt-16px"> <el-card shadow="never" class="mt-16px">
<el-table v-loading="loading" :data="tableData"> <el-table v-loading="loading" :data="tableData">
<el-table-column <el-table-column v-for="item in columnsData" :key="item.prop" :label="item.label" :prop="item.prop" align="center">
v-for="item in columnsData"
:key="item.prop"
:label="item.label"
:prop="item.prop"
align="center"
>
<template #default="scope"> <template #default="scope">
{{ scope.row[item.prop] }} {{scope.row[item.prop]}}
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -30,7 +23,7 @@ import { EChartsOption } from 'echarts'
import { import {
StatisticsPerformanceApi, StatisticsPerformanceApi,
StatisticsPerformanceRespVO StatisticsPerformanceRespVO
} from '@/api/crm/statistics/performance' } from "@/api/crm/statistics/performance"
defineOptions({ name: 'ContractCountPerformance' }) defineOptions({ name: 'ContractCountPerformance' })
const props = defineProps<{ queryParams: any }>() // const props = defineProps<{ queryParams: any }>() //
@ -64,13 +57,13 @@ const echartsOption = reactive<EChartsOption>({
data: [] data: []
}, },
{ {
name: '比增长率(%', name: '比增长率(%',
type: 'line', type: 'line',
yAxisIndex: 1, yAxisIndex: 1,
data: [] data: []
}, },
{ {
name: '比增长率(%', name: '比增长率(%',
type: 'line', type: 'line',
yAxisIndex: 1, yAxisIndex: 1,
data: [] data: []
@ -93,8 +86,7 @@ const echartsOption = reactive<EChartsOption>({
type: 'shadow' type: 'shadow'
} }
}, },
yAxis: [ yAxis: [{
{
type: 'value', type: 'value',
name: '数量(个)', name: '数量(个)',
axisTick: { axisTick: {
@ -142,8 +134,7 @@ const echartsOption = reactive<EChartsOption>({
color: '#e6e6e6' color: '#e6e6e6'
} }
} }
} }],
],
xAxis: { xAxis: {
type: 'category', type: 'category',
name: '日期', name: '日期',
@ -161,7 +152,9 @@ const loadData = async () => {
// 2.1 Echarts // 2.1 Echarts
if (echartsOption.xAxis && echartsOption.xAxis['data']) { if (echartsOption.xAxis && echartsOption.xAxis['data']) {
echartsOption.xAxis['data'] = performanceList.map((s: StatisticsPerformanceRespVO) => s.time) echartsOption.xAxis['data'] = performanceList.map(
(s: StatisticsPerformanceRespVO) => s.time
)
} }
if (echartsOption.series && echartsOption.series[0] && echartsOption.series[0]['data']) { if (echartsOption.series && echartsOption.series[0] && echartsOption.series[0]['data']) {
echartsOption.series[0]['data'] = performanceList.map( echartsOption.series[0]['data'] = performanceList.map(
@ -172,16 +165,16 @@ const loadData = async () => {
echartsOption.series[1]['data'] = performanceList.map( echartsOption.series[1]['data'] = performanceList.map(
(s: StatisticsPerformanceRespVO) => s.lastMonthCount (s: StatisticsPerformanceRespVO) => s.lastMonthCount
) )
echartsOption.series[3]['data'] = performanceList.map((s: StatisticsPerformanceRespVO) => echartsOption.series[3]['data'] = performanceList.map(
s.lastMonthCount !== 0 ? ((s.currentMonthCount / s.lastMonthCount) * 100).toFixed(2) : 'NULL' (s: StatisticsPerformanceRespVO) => s.lastMonthCount !== 0 ? ((s.currentMonthCount - s.lastMonthCount) / s.lastMonthCount*100).toFixed(2) : 'NULL'
) )
} }
if (echartsOption.series && echartsOption.series[2] && echartsOption.series[2]['data']) { if (echartsOption.series && echartsOption.series[2] && echartsOption.series[2]['data']) {
echartsOption.series[2]['data'] = performanceList.map( echartsOption.series[2]['data'] = performanceList.map(
(s: StatisticsPerformanceRespVO) => s.lastYearCount (s: StatisticsPerformanceRespVO) => s.lastYearCount
) )
echartsOption.series[4]['data'] = performanceList.map((s: StatisticsPerformanceRespVO) => echartsOption.series[4]['data'] = performanceList.map(
s.lastYearCount !== 0 ? ((s.currentMonthCount / s.lastYearCount) * 100).toFixed(2) : 'NULL' (s: StatisticsPerformanceRespVO) => s.lastYearCount !== 0 ? ((s.currentMonthCount - s.lastYearCount) / s.lastYearCount*100).toFixed(2) : 'NULL'
) )
} }
@ -189,34 +182,28 @@ const loadData = async () => {
list.value = performanceList list.value = performanceList
convertListData() convertListData()
loading.value = false loading.value = false
} }
// //
const columnsData = reactive([]) const columnsData = reactive([]);
const tableData = reactive([ const tableData = reactive([{title: '当月合同数量统计(个)'}, {title: '上月合同数量统计(个)'},
{ title: '当月合同数量统计(个)' }, {title: '去年当月合同数量统计(个)'}, {title: '环比增长率(%'}, {title: '同比增长率(%'}])
{ title: '上月合同数量统计(个)' },
{ title: '去年当月合同数量统计(个)' },
{ title: '同比增长率(%' },
{ title: '环比增长率(%' }
])
// convertListData // convertListData
const convertListData = () => { const convertListData = () => {
const columnObj = { label: '日期', prop: 'title' } const columnObj = {label: '日期', prop: 'title'}
columnsData.splice(0, columnsData.length) // columnsData.splice(0, columnsData.length);//
columnsData.push(columnObj) columnsData.push(columnObj)
list.value.forEach((item, index) => { list.value.forEach((item, index) => {
const columnObj = { label: item.time, prop: 'prop' + index } const columnObj = {label: item.time, prop: 'prop' + index}
columnsData.push(columnObj) columnsData.push(columnObj)
tableData[0]['prop' + index] = item.currentMonthCount tableData[0]['prop' + index] = item.currentMonthCount
tableData[1]['prop' + index] = item.lastMonthCount tableData[1]['prop' + index] = item.lastMonthCount
tableData[2]['prop' + index] = item.lastYearCount tableData[2]['prop' + index] = item.lastYearCount
tableData[3]['prop' + index] = tableData[3]['prop' + index] = item.lastMonthCount !== 0 ? ((item.currentMonthCount - item.lastMonthCount) / item.lastMonthCount * 100).toFixed(2) : 'NULL'
item.lastMonthCount !== 0 ? (item.currentMonthCount / item.lastMonthCount).toFixed(2) : 'NULL' tableData[4]['prop' + index] = item.lastYearCount !== 0 ? ((item.currentMonthCount - item.lastYearCount) / item.lastYearCount * 100).toFixed(2) : 'NULL'
tableData[4]['prop' + index] =
item.lastYearCount !== 0 ? (item.currentMonthCount / item.lastYearCount).toFixed(2) : 'NULL'
}) })
} }

View File

@ -1,5 +1,4 @@
<!-- 员工业绩统计 --> <!-- 员工业绩统计 -->
<!-- TODO @scholar:参考 ReceivablePricePerformance 建议改 -->
<template> <template>
<!-- Echarts图 --> <!-- Echarts图 -->
<el-card shadow="never"> <el-card shadow="never">
@ -11,15 +10,9 @@
<!-- 统计列表 --> <!-- 统计列表 -->
<el-card shadow="never" class="mt-16px"> <el-card shadow="never" class="mt-16px">
<el-table v-loading="loading" :data="tableData"> <el-table v-loading="loading" :data="tableData">
<el-table-column <el-table-column v-for="item in columnsData" :key="item.prop" :label="item.label" :prop="item.prop" align="center">
v-for="item in columnsData"
:key="item.prop"
:label="item.label"
:prop="item.prop"
align="center"
>
<template #default="scope"> <template #default="scope">
{{ scope.row[item.prop] }} {{scope.row[item.prop]}}
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -30,7 +23,7 @@ import { EChartsOption } from 'echarts'
import { import {
StatisticsPerformanceApi, StatisticsPerformanceApi,
StatisticsPerformanceRespVO StatisticsPerformanceRespVO
} from '@/api/crm/statistics/performance' } from "@/api/crm/statistics/performance"
defineOptions({ name: 'ContractPricePerformance' }) defineOptions({ name: 'ContractPricePerformance' })
const props = defineProps<{ queryParams: any }>() // const props = defineProps<{ queryParams: any }>() //
@ -64,13 +57,13 @@ const echartsOption = reactive<EChartsOption>({
data: [] data: []
}, },
{ {
name: '比增长率(%', name: '比增长率(%',
type: 'line', type: 'line',
yAxisIndex: 1, yAxisIndex: 1,
data: [] data: []
}, },
{ {
name: '比增长率(%', name: '比增长率(%',
type: 'line', type: 'line',
yAxisIndex: 1, yAxisIndex: 1,
data: [] data: []
@ -93,8 +86,7 @@ const echartsOption = reactive<EChartsOption>({
type: 'shadow' type: 'shadow'
} }
}, },
yAxis: [ yAxis: [{
{
type: 'value', type: 'value',
name: '金额(元)', name: '金额(元)',
axisTick: { axisTick: {
@ -142,8 +134,7 @@ const echartsOption = reactive<EChartsOption>({
color: '#e6e6e6' color: '#e6e6e6'
} }
} }
} }],
],
xAxis: { xAxis: {
type: 'category', type: 'category',
name: '日期', name: '日期',
@ -161,7 +152,9 @@ const loadData = async () => {
// 2.1 Echarts // 2.1 Echarts
if (echartsOption.xAxis && echartsOption.xAxis['data']) { if (echartsOption.xAxis && echartsOption.xAxis['data']) {
echartsOption.xAxis['data'] = performanceList.map((s: StatisticsPerformanceRespVO) => s.time) echartsOption.xAxis['data'] = performanceList.map(
(s: StatisticsPerformanceRespVO) => s.time
)
} }
if (echartsOption.series && echartsOption.series[0] && echartsOption.series[0]['data']) { if (echartsOption.series && echartsOption.series[0] && echartsOption.series[0]['data']) {
echartsOption.series[0]['data'] = performanceList.map( echartsOption.series[0]['data'] = performanceList.map(
@ -172,16 +165,16 @@ const loadData = async () => {
echartsOption.series[1]['data'] = performanceList.map( echartsOption.series[1]['data'] = performanceList.map(
(s: StatisticsPerformanceRespVO) => s.lastMonthCount (s: StatisticsPerformanceRespVO) => s.lastMonthCount
) )
echartsOption.series[3]['data'] = performanceList.map((s: StatisticsPerformanceRespVO) => echartsOption.series[3]['data'] = performanceList.map(
s.lastMonthCount !== 0 ? ((s.currentMonthCount / s.lastMonthCount) * 100).toFixed(2) : 'NULL' (s: StatisticsPerformanceRespVO) => s.lastMonthCount !== 0 ? ((s.currentMonthCount - s.lastMonthCount) / s.lastMonthCount*100).toFixed(2) : 'NULL'
) )
} }
if (echartsOption.series && echartsOption.series[2] && echartsOption.series[2]['data']) { if (echartsOption.series && echartsOption.series[2] && echartsOption.series[2]['data']) {
echartsOption.series[2]['data'] = performanceList.map( echartsOption.series[2]['data'] = performanceList.map(
(s: StatisticsPerformanceRespVO) => s.lastYearCount (s: StatisticsPerformanceRespVO) => s.lastYearCount
) )
echartsOption.series[4]['data'] = performanceList.map((s: StatisticsPerformanceRespVO) => echartsOption.series[4]['data'] = performanceList.map(
s.lastYearCount !== 0 ? ((s.currentMonthCount / s.lastYearCount) * 100).toFixed(2) : 'NULL' (s: StatisticsPerformanceRespVO) => s.lastYearCount !== 0 ? ((s.currentMonthCount - s.lastYearCount) / s.lastYearCount*100).toFixed(2) : 'NULL'
) )
} }
@ -189,34 +182,28 @@ const loadData = async () => {
list.value = performanceList list.value = performanceList
convertListData() convertListData()
loading.value = false loading.value = false
} }
// //
const columnsData = reactive([]) const columnsData = reactive([]);
const tableData = reactive([ const tableData = reactive([{title: '当月合同金额统计(元)'}, {title: '上月合同金额统计(元)'}, {title: '去年当月合同金额统计(元)'},
{ title: '当月合同金额统计(元)' }, {title: '环比增长率(%'}, {title: '同比增长率(%'}])
{ title: '上月合同金额统计(元)' },
{ title: '去年当月合同金额统计(元)' },
{ title: '同比增长率(%' },
{ title: '环比增长率(%' }
])
// init // init
const convertListData = () => { const convertListData = () => {
const columnObj = { label: '日期', prop: 'title' } const columnObj = {label: '日期', prop: 'title'}
columnsData.splice(0, columnsData.length) // columnsData.splice(0, columnsData.length)//
columnsData.push(columnObj) columnsData.push(columnObj)
list.value.forEach((item, index) => { list.value.forEach((item, index) => {
const columnObj = { label: item.time, prop: 'prop' + index } const columnObj = {label: item.time, prop: 'prop' + index}
columnsData.push(columnObj) columnsData.push(columnObj)
tableData[0]['prop' + index] = item.currentMonthCount tableData[0]['prop' + index] = item.currentMonthCount
tableData[1]['prop' + index] = item.lastMonthCount tableData[1]['prop' + index] = item.lastMonthCount
tableData[2]['prop' + index] = item.lastYearCount tableData[2]['prop' + index] = item.lastYearCount
tableData[3]['prop' + index] = tableData[3]['prop' + index] = item.lastMonthCount !== 0 ? ((item.currentMonthCount - item.lastMonthCount) / item.lastMonthCount*100).toFixed(2) : 'NULL'
item.lastMonthCount !== 0 ? (item.currentMonthCount / item.lastMonthCount).toFixed(2) : 'NULL' tableData[4]['prop' + index] = item.lastYearCount !== 0 ? ((item.currentMonthCount - item.lastYearCount) / item.lastYearCount*100).toFixed(2) : 'NULL'
tableData[4]['prop' + index] =
item.lastYearCount !== 0 ? (item.currentMonthCount / item.lastYearCount).toFixed(2) : 'NULL'
}) })
} }

View File

@ -10,16 +10,9 @@
<!-- 统计列表 --> <!-- 统计列表 -->
<el-card shadow="never" class="mt-16px"> <el-card shadow="never" class="mt-16px">
<el-table v-loading="loading" :data="tableData"> <el-table v-loading="loading" :data="tableData">
<el-table-column <el-table-column v-for="item in columnsData" :key="item.prop" :label="item.label" :prop="item.prop" align="center">
v-for="item in columnsData"
:key="item.prop"
:label="item.label"
:prop="item.prop"
align="center"
>
<!-- TODO @scholarIDEA 爆红的处理 -->
<template #default="scope"> <template #default="scope">
{{ scope.row[item.prop] }} {{scope.row[item.prop]}}
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -30,7 +23,7 @@ import { EChartsOption } from 'echarts'
import { import {
StatisticsPerformanceApi, StatisticsPerformanceApi,
StatisticsPerformanceRespVO StatisticsPerformanceRespVO
} from '@/api/crm/statistics/performance' } from "@/api/crm/statistics/performance"
defineOptions({ name: 'ContractPricePerformance' }) defineOptions({ name: 'ContractPricePerformance' })
const props = defineProps<{ queryParams: any }>() // const props = defineProps<{ queryParams: any }>() //
@ -64,13 +57,13 @@ const echartsOption = reactive<EChartsOption>({
data: [] data: []
}, },
{ {
name: '比增长率(%', name: '比增长率(%',
type: 'line', type: 'line',
yAxisIndex: 1, yAxisIndex: 1,
data: [] data: []
}, },
{ {
name: '比增长率(%', name: '比增长率(%',
type: 'line', type: 'line',
yAxisIndex: 1, yAxisIndex: 1,
data: [] data: []
@ -93,8 +86,7 @@ const echartsOption = reactive<EChartsOption>({
type: 'shadow' type: 'shadow'
} }
}, },
yAxis: [ yAxis: [{
{
type: 'value', type: 'value',
name: '金额(元)', name: '金额(元)',
axisTick: { axisTick: {
@ -121,7 +113,6 @@ const echartsOption = reactive<EChartsOption>({
type: 'value', type: 'value',
name: '', name: '',
axisTick: { axisTick: {
// TODO @scholarIDEA
alignWithLabel: true, alignWithLabel: true,
lineStyle: { lineStyle: {
width: 0 width: 0
@ -143,8 +134,7 @@ const echartsOption = reactive<EChartsOption>({
color: '#e6e6e6' color: '#e6e6e6'
} }
} }
} }],
],
xAxis: { xAxis: {
type: 'category', type: 'category',
name: '日期', name: '日期',
@ -162,7 +152,9 @@ const loadData = async () => {
// 2.1 Echarts // 2.1 Echarts
if (echartsOption.xAxis && echartsOption.xAxis['data']) { if (echartsOption.xAxis && echartsOption.xAxis['data']) {
echartsOption.xAxis['data'] = performanceList.map((s: StatisticsPerformanceRespVO) => s.time) echartsOption.xAxis['data'] = performanceList.map(
(s: StatisticsPerformanceRespVO) => s.time
)
} }
if (echartsOption.series && echartsOption.series[0] && echartsOption.series[0]['data']) { if (echartsOption.series && echartsOption.series[0] && echartsOption.series[0]['data']) {
echartsOption.series[0]['data'] = performanceList.map( echartsOption.series[0]['data'] = performanceList.map(
@ -173,16 +165,16 @@ const loadData = async () => {
echartsOption.series[1]['data'] = performanceList.map( echartsOption.series[1]['data'] = performanceList.map(
(s: StatisticsPerformanceRespVO) => s.lastMonthCount (s: StatisticsPerformanceRespVO) => s.lastMonthCount
) )
echartsOption.series[3]['data'] = performanceList.map((s: StatisticsPerformanceRespVO) => echartsOption.series[3]['data'] = performanceList.map(
s.lastMonthCount !== 0 ? ((s.currentMonthCount / s.lastMonthCount) * 100).toFixed(2) : 'NULL' (s: StatisticsPerformanceRespVO) => s.lastMonthCount !== 0 ? ((s.currentMonthCount - s.lastMonthCount) / s.lastMonthCount*100).toFixed(2) : 'NULL'
) )
} }
if (echartsOption.series && echartsOption.series[2] && echartsOption.series[1]['data']) { if (echartsOption.series && echartsOption.series[2] && echartsOption.series[1]['data']) {
echartsOption.series[2]['data'] = performanceList.map( echartsOption.series[2]['data'] = performanceList.map(
(s: StatisticsPerformanceRespVO) => s.lastYearCount (s: StatisticsPerformanceRespVO) => s.lastYearCount
) )
echartsOption.series[4]['data'] = performanceList.map((s: StatisticsPerformanceRespVO) => echartsOption.series[4]['data'] = performanceList.map(
s.lastYearCount !== 0 ? ((s.currentMonthCount / s.lastYearCount) * 100).toFixed(2) : 'NULL' (s: StatisticsPerformanceRespVO) => s.lastYearCount !== 0 ? ((s.currentMonthCount - s.lastYearCount) / s.lastYearCount*100).toFixed(2) : 'NULL'
) )
} }
@ -190,36 +182,28 @@ const loadData = async () => {
list.value = performanceList list.value = performanceList
convertListData() convertListData()
loading.value = false loading.value = false
} }
// //
// TODO @scholar as any[] idea const columnsData = reactive([]);
const columnsData = reactive([] as any[]) const tableData = reactive([{title: '当月回款金额统计(元)'}, {title: '上月回款金额统计(元)'},
const tableData = reactive([ {title: '去年当月回款金额统计(元)'}, {title: '环比增长率(%'}, {title: '同比增长率(%'}]);
{ title: '当月回款金额统计(元)' },
{ title: '上月回款金额统计(元)' },
{ title: '去年当月回款金额统计(元)' },
{ title: '同比增长率(%' },
{ title: '环比增长率(%' }
])
// init // init
const convertListData = () => { const convertListData = () => {
const columnObj = { label: '日期', prop: 'title' } const columnObj = {label: '日期', prop: 'title'}
columnsData.splice(0, columnsData.length) // columnsData.splice(0, columnsData.length)//
columnsData.push(columnObj) columnsData.push(columnObj)
list.value.forEach((item, index) => { list.value.forEach((item, index) => {
const columnObj = { label: item.time, prop: 'prop' + index } const columnObj = {label: item.time, prop: 'prop' + index}
columnsData.push(columnObj) columnsData.push(columnObj)
tableData[0]['prop' + index] = item.currentMonthCount tableData[0]['prop' + index] = item.currentMonthCount
tableData[1]['prop' + index] = item.lastMonthCount tableData[1]['prop' + index] = item.lastMonthCount
tableData[2]['prop' + index] = item.lastYearCount tableData[2]['prop' + index] = item.lastYearCount
// TODO @scholar使 erpCalculatePercentage 0 0 tableData[3]['prop' + index] = item.lastMonthCount !== 0 ? ((item.currentMonthCount - item.lastMonthCount) / item.lastMonthCount*100).toFixed(2) : 'NULL'
tableData[3]['prop' + index] = tableData[4]['prop' + index] = item.lastYearCount !== 0 ? ((item.currentMonthCount - item.lastYearCount) / item.lastYearCount*100).toFixed(2) : 'NULL'
item.lastMonthCount !== 0 ? (item.currentMonthCount / item.lastMonthCount).toFixed(2) : 'NULL'
tableData[4]['prop' + index] =
item.lastYearCount !== 0 ? (item.currentMonthCount / item.lastYearCount).toFixed(2) : 'NULL'
}) })
} }

View File

@ -60,10 +60,7 @@
</el-tab-pane> </el-tab-pane>
<!-- 员工回款金额统计 --> <!-- 员工回款金额统计 -->
<el-tab-pane label="员工回款金额统计" name="ReceivablePricePerformance" lazy> <el-tab-pane label="员工回款金额统计" name="ReceivablePricePerformance" lazy>
<ReceivablePricePerformance <ReceivablePricePerformance :query-params="queryParams" ref="ReceivablePricePerformanceRef" />
:query-params="queryParams"
ref="ReceivablePricePerformanceRef"
/>
</el-tab-pane> </el-tab-pane>
</el-tabs> </el-tabs>
</el-col> </el-col>
@ -73,11 +70,12 @@
import * as DeptApi from '@/api/system/dept' import * as DeptApi from '@/api/system/dept'
import * as UserApi from '@/api/system/user' import * as UserApi from '@/api/system/user'
import { useUserStore } from '@/store/modules/user' import { useUserStore } from '@/store/modules/user'
import { beginOfDay, formatDate } from '@/utils/formatTime' import { beginOfDay, defaultShortcuts, endOfDay, formatDate } from '@/utils/formatTime'
import { defaultProps, handleTree } from '@/utils/tree' import { defaultProps, handleTree } from '@/utils/tree'
import ContractCountPerformance from './components/ContractCountPerformance.vue' import ContractCountPerformance from './components/ContractCountPerformance.vue'
import ContractPricePerformance from './components/ContractPricePerformance.vue' import ContractPricePerformance from './components/ContractPricePerformance.vue'
import ReceivablePricePerformance from './components/ReceivablePricePerformance.vue' import ReceivablePricePerformance from './components/ReceivablePricePerformance.vue'
import dayjs from "dayjs"
defineOptions({ name: 'CrmStatisticsCustomer' }) defineOptions({ name: 'CrmStatisticsCustomer' })
@ -85,8 +83,8 @@ const queryParams = reactive({
deptId: useUserStore().getUser.deptId, deptId: useUserStore().getUser.deptId,
userId: undefined, userId: undefined,
times: [ times: [
// formatDate(beginOfDay(new Date(new Date().getFullYear(),0, 1, 0, 0, 0))), // 20242024-01-01 00:00:00
formatDate(beginOfDay(new Date(new Date().getTime() - 3600 * 1000 * 24 * 7))) formatDate(beginOfDay(new Date(new Date().getFullYear()+1,0, 1, 0, 0, 0))) //2025-01-01 00:00:00
] ]
}) })
@ -100,7 +98,6 @@ const userListByDeptId = computed(() =>
: [] : []
) )
// TODO @scholar vue
// //
const activeTab = ref('ContractCountPerformance') const activeTab = ref('ContractCountPerformance')
// 1. // 1.
@ -115,15 +112,13 @@ const handleQuery = () => {
// queryParams.times[0] // queryParams.times[0]
const selectYear = parseInt(queryParams.times[0]) const selectYear = parseInt(queryParams.times[0])
// Date // Date
const fullDate = new Date(selectYear, 0, 1, 0, 0, 0) const fullDate = new Date(selectYear, 0, 1, 0, 0, 0) //20242024-01-01 00:00:00
const nextFullDate = new Date(selectYear+1, 0, 1, 0, 0, 0) //2025-01-01 00:00:00
// 2004-01-01 00:00:00 // 2004-01-01 00:00:00
// TODO @scholar使 year queryParams.times[0] = dayjs(fullDate).format('YYYY-MM-DD HH:mm:ss')
queryParams.times[0] = `${fullDate.getFullYear()}-${String(fullDate.getMonth() + 1).padStart( queryParams.times[1] = dayjs(nextFullDate).format('YYYY-MM-DD HH:mm:ss')
2,
'0'
)}-${String(fullDate.getDate()).padStart(2, '0')} ${String(fullDate.getHours()).padStart(2, '0')}:${String(fullDate.getMinutes()).padStart(2, '0')}:${String(fullDate.getSeconds()).padStart(2, '0')}`
switch (activeTab.value) { switch (activeTab.value) {
case 'ContractCountPerformance': case 'ContractCountPerformance':