fuwutai.module.ts 613 B

12345678910111213141516171819202122232425
  1. import { NgModule } from '@angular/core';
  2. import { CommonModule } from '@angular/common';
  3. import { FuwutaiRoutingModule } from './fuwutai-routing.module';
  4. import { FuwutaiComponent } from './fuwutai.component';
  5. import { ShareModule } from 'src/app/share/share.module';
  6. import { NgxPrintModule } from 'ngx-print';
  7. import { OrderScopeModule } from 'src/app/components/order-scope/order-scope.module';
  8. @NgModule({
  9. declarations: [
  10. FuwutaiComponent
  11. ],
  12. imports: [
  13. CommonModule,
  14. ShareModule,
  15. FuwutaiRoutingModule,
  16. NgxPrintModule,
  17. OrderScopeModule,
  18. ]
  19. })
  20. export class FuwutaiModule { }