computedCurrentLogOverTime.js 423 B

12345678910111213141516
  1. import { computed } from "vue"
  2. import { format, addDays } from 'date-fns';
  3. export function computedCurrentLogOverTime() {
  4. /**
  5. * 延期处理-展示
  6. */
  7. const currentLogOverTime = computed(() => {
  8. return function(currentLog){
  9. return currentLog.extra1DTO.name + format(addDays(new Date(currentLog.startTime), +currentLog.extra2), 'MM月dd日前完成');
  10. }
  11. })
  12. return {
  13. currentLogOverTime
  14. };
  15. }