23 lines
735 B
TypeScript
23 lines
735 B
TypeScript
/*
|
|
* @Description :
|
|
* @Version : 1.0
|
|
* @Author : Shiming
|
|
* @Date : 2021-12-01 09:24:09
|
|
* @LastEditors : Shiming
|
|
* @LastEditTime : 2022-01-18 17:25:04
|
|
* @FilePath : \\tms-obc-web\\src\\app\\routes\\supply-goods\\supply-goods-routing.module.ts
|
|
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
|
*/
|
|
|
|
import { NgModule } from '@angular/core';
|
|
import { RouterModule, Routes } from '@angular/router';
|
|
import { SupplyGoodsComponentListComponent } from './components/list/list.component';
|
|
|
|
const routes: Routes = [{ path: 'list', component: SupplyGoodsComponentListComponent }];
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forChild(routes)],
|
|
exports: [RouterModule]
|
|
})
|
|
export class SupplyGoodsRoutingModule {}
|