| | |
| | | import _ from 'lodash'; |
| | | import { ModelValueType } from 'element-plus'; |
| | | import { useAccess, useIndustrialParkDropDownList } from '@/hooks'; |
| | | import { useGetCurrentExternalSystem } from '@/hooks/externalSystem'; |
| | | |
| | | defineOptions({ |
| | | name: 'WithdrawalApproval', |
| | |
| | | const state = reactive({ ...BaseState }); |
| | | |
| | | const { fourStreamsIndustrialParkList } = useIndustrialParkDropDownList(); |
| | | const { isSignWallet } = useGetCurrentExternalSystem(); |
| | | |
| | | onMounted(async () => { |
| | | await getList(); |
| | |
| | | handleAdd({ |
| | | drawWithId: row.drawWithId, |
| | | isCheck, |
| | | isSignWallet: isSignWallet.value, |
| | | }); |
| | | } |
| | | |
| | |
| | | checkRemark: '', |
| | | isCheck: false, |
| | | checkFileUrl: [] as UploadUserFile[], |
| | | isSignWallet: false, |
| | | }, |
| | | }); |
| | | |