extraComponents.js 473 Bytes
Newer Older
陈龙's avatar
陈龙 committed
1 2 3 4 5 6 7 8 9 10 11 12 13
// import AccountPermissionScan from '../../AccountManage/AccountPermissionScan';
import React from 'react';
import pic from '../assets/pic.webp';
const extraComponents = {
  renderAccount: (props) => {
    return <div>台账组件</div>;
  },
  returnImage: (data) => {
    return <img width={200} height={200} src={pic} alt={data.alt} />;
  },
  default: () => <span>若需要使用弹窗功能,请开发或配置功能函数</span>,
};
export default extraComponents;