import { Text, View } from "@tarojs/components"; import { memo } from "react"; import AmountShow from "../amountShow"; import classnames from "classnames"; import styles from './index.module.scss' import MCheckbox from "@/components/checkbox"; import Popup from "@/components/popup"; import SearchInput from "@/components/searchInput"; import Taro from "@tarojs/taro"; type Param = { show?: true|false, onClose?: () => void } export default memo(({show = true, onClose}:Param) => { //复制功能 const clipboardData = () => { Taro.setClipboardData({ data: '开户名称:佛山市浩川盛世科技有限公司;\n\r 开户银行:招商银行汾江支行;\n\r 转账汇款账号:62062342120001221231212;', success: function (res) { Taro.showToast({ icon: 'none', title: '复制成功' }) } }) } return ( 线下汇款 佛山市浩川盛世科技有限公司 招商银行汾江支行 62062342120001221231212 复制信息 ) })