| | |
| | | <ProFormItemV2 |
| | | label="上传凭证:" |
| | | prop="payAuditFileUrl" |
| | | :required="form.auditStatus === EnumParkBountyTradeDetailAuditStatus.Pass" |
| | | :required="!isApplyTrade" |
| | | :check-rules=" |
| | | form.auditStatus === EnumParkBountyTradeDetailAuditStatus.Pass && [ |
| | | !isApplyTrade && [ |
| | | { |
| | | message: '请上传凭证', |
| | | type: 'upload', |
| | |
| | | name: 'WithdrawalApprovalAuditDialog', |
| | | }); |
| | | |
| | | // type Props = {}; |
| | | type Props = { |
| | | //true 出账审批 false 财务审批 |
| | | isApplyTrade?: boolean; |
| | | }; |
| | | |
| | | // const props = withDefaults(defineProps<Props>(), {}); |
| | | const props = withDefaults(defineProps<Props>(), {}); |
| | | |
| | | const visible = defineModel({ type: Boolean }); |
| | | |