| | |
| | | }, |
| | | { |
| | | component: 'InputNumber', |
| | | componentProps: { |
| | | componentProps: (values) => ({ |
| | | class: '!w-full', |
| | | placeholder: '请输入收取订金', |
| | | precision: 2, |
| | | min: 0, |
| | | }, |
| | | max: values.totalPrice ?? undefined, |
| | | }), |
| | | fieldName: 'depositPrice', |
| | | label: '收取订金', |
| | | dependencies: { |
| | | triggerFields: ['totalPrice'], |
| | | rules(values) { |
| | | if (values.totalPrice != null) { |
| | | return z |
| | | .number() |
| | | .min(0, '订金不能小于0') |
| | | .max(values.totalPrice, '收取订金不能大于优惠后金额'); |
| | | } |
| | | return z.number().min(0, '订金不能小于0').optional(); |
| | | }, |
| | | }, |
| | | rules: z.number().min(0).optional(), |
| | | }, |
| | | ]; |
| | |
| | | component: 'Select', |
| | | componentProps: { |
| | | options: [ |
| | | { label: '未审核', value: 10 }, |
| | | { label: '未提交', value: 0 }, |
| | | { label: '审批中', value: 15 }, |
| | | { label: '已审核', value: 20 }, |
| | | { label: '已驳回', value: 35 }, |
| | | { label: '已作废', value: 30 }, |
| | | ], |
| | | placeholder: '请选择状态', |