Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop

This commit is contained in:
Taric Xin
2022-02-18 14:18:55 +08:00
12 changed files with 137 additions and 75 deletions

View File

@ -111,7 +111,7 @@ export class NetworkFreightComponent implements OnInit {
buttons: [
{
text: '基础设置',
click: item => this.ticket(item)
click: item => this.creat(item)
},
{
text: '财务设置',
@ -573,7 +573,8 @@ export class NetworkFreightComponent implements OnInit {
}
}
// 新增
creat() {
this.router.navigate(['./new'], { relativeTo: this.ar });
creat(value?: any) {
console.log(value)
this.router.navigate(['./new/'+ value?.id], { relativeTo: this.ar });
}
}