UNPKG

ttk-app-core

Version:

@ttk/recat enterprise develop framework

23 lines (21 loc) 522 B
import React from 'react' import { Modal } from "antd" import ContentModal from '@/components/contentModal' export default function Component(props) { return ( <ContentModal className="limit-modal" width={380} title="提示" centered maskClosable={false} visible={true} footer={false} closable={false} > <div> 当月可开具的增值税电子普通发票数量为0, 请让管理员申领或分发发票 </div> </ContentModal> ) }