前端转vue
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PrintEntry.ts 497B

123456789101112131415161718192021222324
  1. import { EntryBase } from '../ContractBase/EntryBase'
  2. import type { PrintContainer } from '../../Platform/Print/PrintContainer'
  3. /**
  4. * 打印数据入口(抽象类)
  5. */
  6. export abstract class PrintEntry extends EntryBase {
  7. /**
  8. * 批量打印标志
  9. */
  10. public IsBatchPrint: boolean = false
  11. /**
  12. * 批量打印清单
  13. */
  14. public BatchList: PrintContainer[] = []
  15. }
  16. // Vue组合式API封装
  17. export const usePrintEntry = () => {
  18. return {
  19. PrintEntry
  20. }
  21. }