merge partner
This commit is contained in:
@ -166,21 +166,6 @@ export class FreightComponentsListComponent implements OnInit {
|
||||
showRequired: false
|
||||
}
|
||||
},
|
||||
enterpriseType: {
|
||||
type: 'string',
|
||||
title: '企业类型',
|
||||
enum: [
|
||||
{ label: '全部', value: '' },
|
||||
{ label: '物流企业', value: 0 }
|
||||
],
|
||||
default: '',
|
||||
ui: {
|
||||
widget: 'select',
|
||||
visibleIf: {
|
||||
expand: (value: boolean) => value
|
||||
}
|
||||
}
|
||||
},
|
||||
lockedStatus8: {
|
||||
type: 'string',
|
||||
title: '公司所在地',
|
||||
@ -312,7 +297,7 @@ export class FreightComponentsListComponent implements OnInit {
|
||||
}
|
||||
}
|
||||
},
|
||||
networkTransporter: {
|
||||
enterpriseType: {
|
||||
type: 'string',
|
||||
title: '企业类型',
|
||||
enum: [
|
||||
|
||||
@ -19,14 +19,13 @@ import { FreightComponentsListDetailComponent } from './components/freight/list/
|
||||
|
||||
import { FreightComponentsListComponent } from './components/freight/list/list.component';
|
||||
import { FreightComponentsListNewComponent } from './components/freight/list/new/new.component';
|
||||
import { FreightComponentsListViewComponent } from './components/freight/list/view/view.component';
|
||||
import { FreightComponentsUserDetailComponent } from './components/freight/user/detail/detail.component';
|
||||
import { FreightComponentsUserComponent } from './components/freight/user/user.component';
|
||||
|
||||
const routes: Routes = [
|
||||
{ path: 'freight/list', component: FreightComponentsListComponent, data: { guard: { ability: ['USERCENTER-FREIGHT-LIST-list'] } } },
|
||||
// data: { guard: { ability: ['USERCENTER-FREIGHT-LIST-list'] } }
|
||||
{ path: 'freight/list/view/:id', component: FreightComponentsListViewComponent },
|
||||
// { path: 'freight/list/view/:id', component: FreightComponentsListViewComponent },
|
||||
{ path: 'freight/list/new', component: FreightComponentsListNewComponent, data: { guard: { ability: ['USERCENTER-FREIGHT-NEW-save'] } } },
|
||||
{
|
||||
path: 'freight/list/detail/:id',
|
||||
|
||||
@ -62,7 +62,7 @@ export class ShipperBaseService extends BaseService {
|
||||
};
|
||||
});
|
||||
const obj = [{ value: '', label: '全部' }];
|
||||
this.list = [...obj, ...list];
|
||||
// this.list = [...obj, ...list];
|
||||
return [...obj, ...list];
|
||||
})
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user