edit
This commit is contained in:
@ -339,7 +339,7 @@ export class InvoiceRequestedComponent {
|
||||
},
|
||||
arto: {
|
||||
type: 'string',
|
||||
title: '购买人',
|
||||
title: '货主名称',
|
||||
ui: {
|
||||
widget: 'select',
|
||||
placeholder: '请选择',
|
||||
@ -359,7 +359,7 @@ export class InvoiceRequestedComponent {
|
||||
{ title: '', index: 'key', type: 'checkbox' },
|
||||
{ title: '申请编号', render: 'vatappcode', width: 190 },
|
||||
{ title: '网络货运人', index: 'ltdName', width: 170 },
|
||||
{ title: '购买方', index: 'artoName', width: 170 },
|
||||
{ title: '货主名称', index: 'artoName', width: 170 },
|
||||
{ title: '订单数', index: 'ordlines', width: 90 },
|
||||
{
|
||||
title: '申请金额',
|
||||
|
||||
@ -130,7 +130,7 @@ export class EAUserService extends BaseService {
|
||||
async doAfterLogin() {
|
||||
await this.loadUserInfo();
|
||||
await this.loadUserMenus();
|
||||
await this.loadUserRoles();
|
||||
this.loadApp();
|
||||
}
|
||||
|
||||
/**
|
||||
@ -165,9 +165,15 @@ export class EAUserService extends BaseService {
|
||||
}
|
||||
|
||||
/**
|
||||
* 加载用户角色
|
||||
* 加载系统信息
|
||||
*/
|
||||
loadUserRoles() {}
|
||||
loadApp() {
|
||||
this.http.get(`assets/mocks/app-data.json`).subscribe(res => {
|
||||
if (res.app) {
|
||||
this.settings.setApp(res.app);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 登出
|
||||
|
||||
Reference in New Issue
Block a user