| | |
| | | EnumParkBountyTradeDetailAuditStatusTextForAdudit, |
| | | EnterpriseType, |
| | | } from '@/constants'; |
| | | import { Message } from '@bole-core/core'; |
| | | |
| | | defineOptions({ |
| | | name: 'RewardApplyTradeCheckDialog', |
| | |
| | | }); |
| | | } |
| | | |
| | | function handleApply() { |
| | | copyTextToClipboard( |
| | | `开户名称:${getIncomeCompanyName(form.value)}\n开户银行:${getIncomeBankName( |
| | | async function handleApply() { |
| | | try { |
| | | const content = `开户名称:${getIncomeBankAccount(form.value)}\n开户银行:${getIncomeBankName( |
| | | form.value |
| | | )}\n开户账号:${getIncomeBankCardNumber(form.value)}` |
| | | ); |
| | | )}\n开户账号:${getIncomeBankCardNumber(form.value)}`; |
| | | await Message.tipMessage(content, { title: '复制内容' }); |
| | | copyTextToClipboard(content); |
| | | } catch (error) {} |
| | | } |
| | | </script> |
| | | <style lang="scss" scoped> |