From f62a87528fa4472b9676df86d08fb1a98baa6ca7 Mon Sep 17 00:00:00 2001 From: wangshiming Date: Wed, 30 Mar 2022 14:15:08 +0800 Subject: [PATCH] fix bug --- .../order-reporting/order-reporting.component.html | 0 .../order-reporting/order-reporting.component.less | 0 .../order-reporting/order-reporting.component.spec.ts | 0 .../order-reporting/order-reporting.component.ts | 2 +- .../routes/tax-management/tax-management-routing.module.ts | 2 +- src/app/routes/tax-management/taxmanagement.module.ts | 4 ++-- 6 files changed, 4 insertions(+), 4 deletions(-) rename src/app/routes/tax-management/components/{reporting => }/order-reporting/order-reporting.component.html (100%) rename src/app/routes/tax-management/components/{reporting => }/order-reporting/order-reporting.component.less (100%) rename src/app/routes/tax-management/components/{reporting => }/order-reporting/order-reporting.component.spec.ts (100%) rename src/app/routes/tax-management/components/{reporting => }/order-reporting/order-reporting.component.ts (99%) diff --git a/src/app/routes/tax-management/components/reporting/order-reporting/order-reporting.component.html b/src/app/routes/tax-management/components/order-reporting/order-reporting.component.html similarity index 100% rename from src/app/routes/tax-management/components/reporting/order-reporting/order-reporting.component.html rename to src/app/routes/tax-management/components/order-reporting/order-reporting.component.html diff --git a/src/app/routes/tax-management/components/reporting/order-reporting/order-reporting.component.less b/src/app/routes/tax-management/components/order-reporting/order-reporting.component.less similarity index 100% rename from src/app/routes/tax-management/components/reporting/order-reporting/order-reporting.component.less rename to src/app/routes/tax-management/components/order-reporting/order-reporting.component.less diff --git a/src/app/routes/tax-management/components/reporting/order-reporting/order-reporting.component.spec.ts b/src/app/routes/tax-management/components/order-reporting/order-reporting.component.spec.ts similarity index 100% rename from src/app/routes/tax-management/components/reporting/order-reporting/order-reporting.component.spec.ts rename to src/app/routes/tax-management/components/order-reporting/order-reporting.component.spec.ts diff --git a/src/app/routes/tax-management/components/reporting/order-reporting/order-reporting.component.ts b/src/app/routes/tax-management/components/order-reporting/order-reporting.component.ts similarity index 99% rename from src/app/routes/tax-management/components/reporting/order-reporting/order-reporting.component.ts rename to src/app/routes/tax-management/components/order-reporting/order-reporting.component.ts index 8d5a65be..6c7f6126 100644 --- a/src/app/routes/tax-management/components/reporting/order-reporting/order-reporting.component.ts +++ b/src/app/routes/tax-management/components/order-reporting/order-reporting.component.ts @@ -4,7 +4,7 @@ import { STColumn, STComponent, STData } from '@delon/abc/st'; import { SFComponent, SFDateWidgetSchema, SFSchema, SFUISchema } from '@delon/form'; import { ShipperBaseService } from '@shared'; import { NzModalService } from 'ng-zorro-antd/modal'; -import { TaxManagementService } from '../../../services/tax-management.service'; +import { TaxManagementService } from '../../services/tax-management.service'; // import { DatatableReportingUploadSettingComponent } from '../upload-setting/upload-setting.component'; // import { DatatableReportingVerifyResultComponent } from '../verify-result/verify-result.component'; diff --git a/src/app/routes/tax-management/tax-management-routing.module.ts b/src/app/routes/tax-management/tax-management-routing.module.ts index e60a9997..ab3e2090 100644 --- a/src/app/routes/tax-management/tax-management-routing.module.ts +++ b/src/app/routes/tax-management/tax-management-routing.module.ts @@ -1,6 +1,6 @@ import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; -import { TaxManagementOrderReportingComponent } from './components/reporting/order-reporting/order-reporting.component'; +import { TaxManagementOrderReportingComponent } from './components/order-reporting/order-reporting.component'; const routes: Routes = [ diff --git a/src/app/routes/tax-management/taxmanagement.module.ts b/src/app/routes/tax-management/taxmanagement.module.ts index dd50e2a1..9cb1ff61 100644 --- a/src/app/routes/tax-management/taxmanagement.module.ts +++ b/src/app/routes/tax-management/taxmanagement.module.ts @@ -4,13 +4,13 @@ * @Author : Shiming * @Date : 2022-03-30 13:58:28 * @LastEditors : Shiming - * @LastEditTime : 2022-03-30 14:05:00 + * @LastEditTime : 2022-03-30 14:14:57 * @FilePath : \\tms-obc-web\\src\\app\\routes\\tax-management\\taxmanagement.module.ts * Copyright (C) 2022 huzhenhong. All rights reserved. */ import { NgModule, Type } from '@angular/core'; import { SharedModule, SHARED_G2_MODULES } from '@shared'; -import { TaxManagementOrderReportingComponent } from './components/reporting/order-reporting/order-reporting.component'; +import { TaxManagementOrderReportingComponent } from './components/order-reporting/order-reporting.component'; import { TaxManagementModuleRoutingModule } from './tax-management-routing.module';