diff --git a/src/app/routes/order/carorderlist/carorderlist.component.html b/src/app/routes/order/carorderlist/carorderlist.component.html
new file mode 100644
index 00000000..482ccb06
--- /dev/null
+++ b/src/app/routes/order/carorderlist/carorderlist.component.html
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/app/routes/order/carorderlist/carorderlist.component.spec.ts b/src/app/routes/order/carorderlist/carorderlist.component.spec.ts
new file mode 100644
index 00000000..ebce2e42
--- /dev/null
+++ b/src/app/routes/order/carorderlist/carorderlist.component.spec.ts
@@ -0,0 +1,24 @@
+import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
+import { OrderCarorderlistComponent } from './carorderlist.component';
+
+describe('OrderCarorderlistComponent', () => {
+ let component: OrderCarorderlistComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(waitForAsync(() => {
+ TestBed.configureTestingModule({
+ declarations: [ OrderCarorderlistComponent ]
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(OrderCarorderlistComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/src/app/routes/order/carorderlist/carorderlist.component.ts b/src/app/routes/order/carorderlist/carorderlist.component.ts
new file mode 100644
index 00000000..4531e571
--- /dev/null
+++ b/src/app/routes/order/carorderlist/carorderlist.component.ts
@@ -0,0 +1,45 @@
+import { Component, OnInit, ViewChild } from '@angular/core';
+import { STColumn, STComponent } from '@delon/abc/st';
+import { SFSchema } from '@delon/form';
+import { ModalHelper, _HttpClient } from '@delon/theme';
+
+@Component({
+ selector: 'app-order-carorderlist',
+ templateUrl: './carorderlist.component.html',
+})
+export class OrderCarorderlistComponent implements OnInit {
+ url = `/user`;
+ searchSchema: SFSchema = {
+ properties: {
+ no: {
+ type: 'string',
+ title: '编号'
+ }
+ }
+ };
+ @ViewChild('st') private readonly st!: STComponent;
+ columns: STColumn[] = [
+ { title: '编号', index: 'no' },
+ { title: '调用次数', type: 'number', index: 'callNo' },
+ { title: '头像', type: 'img', width: '50px', index: 'avatar' },
+ { title: '时间', type: 'date', index: 'updatedAt' },
+ {
+ title: '',
+ buttons: [
+ // { text: '查看', click: (item: any) => `/form/${item.id}` },
+ // { text: '编辑', type: 'static', component: FormEditComponent, click: 'reload' },
+ ]
+ }
+ ];
+
+ constructor(private http: _HttpClient, private modal: ModalHelper) { }
+
+ ngOnInit(): void { }
+
+ add(): void {
+ // this.modal
+ // .createStatic(FormEditComponent, { i: { id: 0 } })
+ // .subscribe(() => this.st.reload());
+ }
+
+}
diff --git a/src/app/routes/order/order-routing.module.ts b/src/app/routes/order/order-routing.module.ts
new file mode 100644
index 00000000..ca60d673
--- /dev/null
+++ b/src/app/routes/order/order-routing.module.ts
@@ -0,0 +1,13 @@
+import { NgModule } from '@angular/core';
+import { RouterModule, Routes } from '@angular/router';
+import { OrderCarorderlistComponent } from './carorderlist/carorderlist.component';
+
+const routes: Routes = [
+
+ { path: 'carorderlist', component: OrderCarorderlistComponent }];
+
+@NgModule({
+ imports: [RouterModule.forChild(routes)],
+ exports: [RouterModule]
+})
+export class OrderRoutingModule { }
diff --git a/src/app/routes/order/order.module.ts b/src/app/routes/order/order.module.ts
new file mode 100644
index 00000000..16d91fb2
--- /dev/null
+++ b/src/app/routes/order/order.module.ts
@@ -0,0 +1,16 @@
+import { NgModule, Type } from '@angular/core';
+import { SharedModule } from '@shared';
+import { OrderRoutingModule } from './order-routing.module';
+import { OrderCarorderlistComponent } from './carorderlist/carorderlist.component';
+
+const COMPONENTS: Type[] = [
+ OrderCarorderlistComponent];
+
+@NgModule({
+ imports: [
+ SharedModule,
+ OrderRoutingModule
+ ],
+ declarations: COMPONENTS,
+})
+export class OrderModule { }
diff --git a/src/app/routes/routes-routing.module.ts b/src/app/routes/routes-routing.module.ts
index 0f1254e9..48d35291 100644
--- a/src/app/routes/routes-routing.module.ts
+++ b/src/app/routes/routes-routing.module.ts
@@ -13,7 +13,7 @@ const routes: Routes = [
children: [
{ path: '', redirectTo: 'dashboard', pathMatch: 'full' },
{ path: 'dashboard', component: DashboardComponent },
- ],
+ { path: 'order', loadChildren: () => import('./order/order.module').then((m) => m.OrderModule) },],
},
// passport
{ path: '', loadChildren: () => import('./passport/passport.module').then((m) => m.PassportModule) },
diff --git a/src/assets/mocks/menu-data.json b/src/assets/mocks/menu-data.json
index dad1d744..c9aa327c 100644
--- a/src/assets/mocks/menu-data.json
+++ b/src/assets/mocks/menu-data.json
@@ -15,8 +15,24 @@
"icon": "anticon anticon-rocket",
"shortcutRoot": true,
"children": []
+
+ },
+ {
+ "text": "订单管理",
+ "icon": "anticon anticon-rocket",
+ "shortcutRoot": true,
+ "children": [
+ {
+ "text": "整车订单",
+ "link": "/order/carorderlist"
+ },
+ {
+ "text": "大宗订单",
+ "link": "/ctc/order/bigcarorderlist"
+ }
+ ]
}
]
}
]
-}
+}
\ No newline at end of file