| | |
| | | v-model="form.subject_type" |
| | | :valueEnum="EnumWeChatPayApplymentSubjectTypeText" |
| | | placeholder="请选择主体类型" |
| | | @change="handleSubjectTypeChange" |
| | | > |
| | | </ProFormSelect> |
| | | </ProFormItemV2> |
| | |
| | | v-model:file-url="form.web_authorisation" |
| | | :limit="1" |
| | | :limitFileSize="10" |
| | | accept="jpg/jpeg,png,pdf" |
| | | accept="jpg/jpeg,png" |
| | | ></ProFormUpload> |
| | | <el-button |
| | | style="margin-left: 10px" |
| | |
| | | ); |
| | | } |
| | | |
| | | function handleSubjectTypeChange() { |
| | | form.cert_type = '' as any as EnumWeChatPayApplymentCertType; |
| | | form.id_holder_type = '' as any as EnumWeChatPayApplymentIdHolderType; |
| | | form.id_doc_type = '' as any as EnumWeChatPayApplymentIdDocType; |
| | | form.bank_account_type = EnumWeChatPayApplymentBankAccountType.BANK_ACCOUNT_TYPE_CORPORATE; |
| | | } |
| | | |
| | | defineExpose({ |
| | | onConfirm: openEnterpriseWeChatPayWallet, |
| | | }); |