gaoluyang
2026-08-31 8f8dcdae7e40ba4e94a363aa8eb91c7665810bc3
src/views/mes/process-design/process/data.ts
@@ -77,6 +77,29 @@
      rules: z.number().default(CommonStatusEnum.ENABLE),
    },
    {
      fieldName: 'waitDuration',
      label: '等待时长(小时)',
      component: 'InputNumber',
      formItemClass: 'col-span-2',
      componentProps: {
        class: '!w-full',
        min: 0,
        precision: 2,
        placeholder: '留空或 0 表示无需倒计时',
      },
    },
    {
      fieldName: 'needReportQuantity',
      label: '需填写报工数量',
      component: 'Switch',
      formItemClass: 'col-span-1',
      defaultValue: true,
      componentProps: {
        checkedChildren: '是',
        unCheckedChildren: '否',
      },
    },
    {
      fieldName: 'attention',
      label: '工序说明',
      component: 'Textarea',