[Fix][UI Next][V1.0.0-Alpha]Fixed an issue with time picker clearing (#8655)
parent
217bfb4153
commit
78d7c06f2e
|
|
@ -25,8 +25,8 @@ export function useProcessState() {
|
|||
const getProcessState = (date: Array<number>) => {
|
||||
const { state } = useAsyncState(
|
||||
countProcessInstanceState({
|
||||
startDate: format(date[0], 'yyyy-MM-dd HH:mm:ss'),
|
||||
endDate: format(date[1], 'yyyy-MM-dd HH:mm:ss'),
|
||||
startDate: !date ? '' : format(date[0], 'yyyy-MM-dd HH:mm:ss'),
|
||||
endDate: !date ? '' : format(date[1], 'yyyy-MM-dd HH:mm:ss'),
|
||||
projectCode: 0
|
||||
}).then((res: TaskStateRes): StateData => {
|
||||
const table = res.taskCountDtos.map((item) => {
|
||||
|
|
|
|||
|
|
@ -22,11 +22,11 @@ import type { TaskStateRes } from '@/service/modules/projects-analysis/types'
|
|||
import type { StateData } from './types'
|
||||
|
||||
export function useTaskState() {
|
||||
const getTaskState = (date: Array<number>) => {
|
||||
const getTaskState = (date: Array<any>) => {
|
||||
const { state } = useAsyncState(
|
||||
countTaskState({
|
||||
startDate: format(date[0], 'yyyy-MM-dd HH:mm:ss'),
|
||||
endDate: format(date[1], 'yyyy-MM-dd HH:mm:ss'),
|
||||
startDate: !date ? '' : format(date[0], 'yyyy-MM-dd HH:mm:ss'),
|
||||
endDate: !date ? '' : format(date[1], 'yyyy-MM-dd HH:mm:ss'),
|
||||
projectCode: 0
|
||||
}).then((res: TaskStateRes): StateData => {
|
||||
const table = res.taskCountDtos.map((item, index) => {
|
||||
|
|
|
|||
|
|
@ -28,8 +28,8 @@ export function useProcessState() {
|
|||
const getProcessState = (date: Array<number>) => {
|
||||
const { state } = useAsyncState(
|
||||
countProcessInstanceState({
|
||||
startDate: format(date[0], 'yyyy-MM-dd HH:mm:ss'),
|
||||
endDate: format(date[1], 'yyyy-MM-dd HH:mm:ss'),
|
||||
startDate: !date ? '' : format(date[0], 'yyyy-MM-dd HH:mm:ss'),
|
||||
endDate: !date ? '' : format(date[1], 'yyyy-MM-dd HH:mm:ss'),
|
||||
projectCode: Number(route.params.projectCode)
|
||||
}).then((res: TaskStateRes): StateData => {
|
||||
const table = res.taskCountDtos.map((item, index) => {
|
||||
|
|
|
|||
|
|
@ -28,8 +28,8 @@ export function useTaskState() {
|
|||
const getTaskState = (date: Array<number>) => {
|
||||
const { state } = useAsyncState(
|
||||
countTaskState({
|
||||
startDate: format(date[0], 'yyyy-MM-dd HH:mm:ss'),
|
||||
endDate: format(date[1], 'yyyy-MM-dd HH:mm:ss'),
|
||||
startDate: !date ? '' : format(date[0], 'yyyy-MM-dd HH:mm:ss'),
|
||||
endDate: !date ? '' : format(date[1], 'yyyy-MM-dd HH:mm:ss'),
|
||||
projectCode: Number(route.params.projectCode)
|
||||
}).then((res: TaskStateRes): StateData => {
|
||||
const table = res.taskCountDtos.map((item, index) => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue