liu
2 天以前 749cb2f4ad815c5a68c19fe961d5ca2149a84dd4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<script lang="ts" setup>
import type { MesCalScheduleDetailApi } from '#/api/mes/cal/scheduleDetail';
 
import { computed, ref } from 'vue';
 
import { useVbenModal } from '@vben/common-ui';
 
import { message } from 'ant-design-vue';
 
import { useVbenForm } from '#/adapter/form';
import { updateDetail } from '#/api/mes/cal/scheduleDetail';
import { $t } from '#/locales';
 
import { useFormSchema } from '../data';
 
const emit = defineEmits(['success']);
const formData = ref<MesCalScheduleDetailApi.Detail>();
 
const getTitle = computed(() => {
  return formData.value
    ? `调整排班明细(${formData.value.shiftName ?? ''})`
    : '调整排班明细';
});
 
const [Form, formApi] = useVbenForm({
  commonConfig: {
    componentProps: {
      class: 'w-full',
    },
    formItemClass: 'col-span-1',
    labelWidth: 90,
  },
  layout: 'horizontal',
  schema: useFormSchema(),
  showDefaultActions: false,
});
 
const [Modal, modalApi] = useVbenModal({
  async onConfirm() {
    const { valid } = await formApi.validate();
    if (!valid) {
      return;
    }
    modalApi.lock();
    try {
      const data = (await formApi.getValues()) as MesCalScheduleDetailApi.Detail;
      await updateDetail(data);
      await modalApi.close();
      emit('success');
      message.success($t('ui.actionMessage.operationSuccess'));
    } finally {
      modalApi.unlock();
    }
  },
  async onOpenChange(isOpen: boolean) {
    if (!isOpen) {
      formData.value = undefined;
      return;
    }
    // 加载数据
    const data = modalApi.getData<{ row: MesCalScheduleDetailApi.Detail }>();
    formData.value = data.row;
    await formApi.setValues({
      id: data.row.id,
      shiftId: data.row.shiftId,
      shiftName: data.row.shiftName,
      startTime: data.row.startTime,
      endTime: data.row.endTime,
      remark: data.row.remark,
    });
  },
});
</script>
 
<template>
  <Modal :title="getTitle" class="w-2/5">
    <Form class="mx-4" />
  </Modal>
</template>