Skip to content

Commit

Permalink
perf(列表模块): 移动列表页模块到特性模块下
Browse files Browse the repository at this point in the history
  • Loading branch information
jiayisheji committed Nov 30, 2017
1 parent f04aedd commit 50e2e25
Show file tree
Hide file tree
Showing 27 changed files with 45 additions and 6 deletions.
35 changes: 35 additions & 0 deletions src/app/feature/list/basic-list/basic-list.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<div class="page-header">
<sim-breadcrumb></sim-breadcrumb>
<div>
<h2>标准列表</h2>
</div>
</div>
<div class="page-content">
<sim-card>
<sim-card-content>
<div>

</div>
<div>

</div>
<div>

</div>
</sim-card-content>
</sim-card>
<sim-card sim-card-paddings style="margin-top: 24px;">
<sim-card-header>
<div class="card-header-title">
标准列表
</div>
<div class="card-header-extra">

</div>
</sim-card-header>
<sim-card-content>
<button type="button" sim-button [color]="'primary'" [shape]="'dashed'" style="width: 100%; margin-bottom: 8px;"><i class="icon-plus"></i><span>添加</span></button>

</sim-card-content>
</sim-card>
</div>
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { SharedModule } from '@app/shared';

import { ListRoutingModule } from './list-routing.module';
import { TableListComponent } from './table-list/table-list.component';
Expand All @@ -11,9 +11,16 @@ import { SearchComponent } from './search/search.component';

@NgModule({
imports: [
CommonModule,
SharedModule,
ListRoutingModule
],
declarations: [TableListComponent, BasicListComponent, CardListComponent, CoverCardListComponent, FilterCardListComponent, SearchComponent]
declarations: [
TableListComponent,
BasicListComponent,
CardListComponent,
CoverCardListComponent,
FilterCardListComponent,
SearchComponent
]
})
export class ListModule { }
3 changes: 0 additions & 3 deletions src/app/pages/list/basic-list/basic-list.component.html

This file was deleted.

0 comments on commit 50e2e25

Please sign in to comment.