Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop
This commit is contained in:
@ -12,58 +12,57 @@
|
||||
<se-container col="3" labelWidth=100>
|
||||
<se-title class="mb-md" style="font-size:18px">基本信息(应收费用)</se-title>
|
||||
<se label="网络货运人" required>
|
||||
天津怡亚通物流科技有限公司
|
||||
{{costInfo?.ltdid}}
|
||||
</se>
|
||||
<se label="费用类型" required col="2">
|
||||
应收
|
||||
{{costInfo?.feetype}}
|
||||
</se>
|
||||
<se label="费用备注">
|
||||
天津怡亚通物流科技有限公司
|
||||
{{costInfo?.arremarks}}
|
||||
</se>
|
||||
<se label="应收对象" required>
|
||||
C21.001-茅台集团
|
||||
{{costInfo?.artoname}}
|
||||
</se>
|
||||
<se label="开票类型" required>
|
||||
专票/普票
|
||||
{{costInfo?.arvattype}}
|
||||
</se>
|
||||
<se label="应收金额" required>
|
||||
4200.00
|
||||
{{costInfo?.armoeny}}
|
||||
</se>
|
||||
<se label="开票金额" required>
|
||||
4200.00
|
||||
{{costInfo?.arkpmoney}}
|
||||
</se>
|
||||
<se label="收款金额" required>
|
||||
4200.00
|
||||
{{costInfo?.arbrmmoney}}
|
||||
</se>
|
||||
</se-container>
|
||||
<se-container col="3" labelWidth=100 class="mt-md">
|
||||
<se-title class="mb-md" style="font-size:18px">基本信息(应付费用)</se-title>
|
||||
<se label="网络货运人" required>
|
||||
天津怡亚通物流科技有限公司
|
||||
{{costInfo?.ltdid}}
|
||||
</se>
|
||||
<se label="费用类型" required>
|
||||
应收
|
||||
{{costInfo?.feetype}}
|
||||
</se>
|
||||
<se label="应付核销" required>
|
||||
是
|
||||
</se>
|
||||
<se label="费用备注">
|
||||
天津怡亚通物流科技有限公司
|
||||
{{costInfo?.hrremarks}}
|
||||
</se>
|
||||
<se label="应收对象" required>
|
||||
C21.001-茅台集团
|
||||
{{costInfo?.hrtoname}}
|
||||
</se>
|
||||
<se label="开票类型" required>
|
||||
专票/普票
|
||||
<se label="收票类型" required>
|
||||
{{costInfo?.hrvattype}}
|
||||
</se>
|
||||
<se label="应收金额" required>
|
||||
4200.00
|
||||
<se label="应付金额" required>
|
||||
{{costInfo?.hrmoney}}
|
||||
</se>
|
||||
<se label="收票金额" required>
|
||||
4200.00
|
||||
{{costInfo?.hrvatmoney}}
|
||||
</se>
|
||||
<se label="付款金额" required>
|
||||
4200.00
|
||||
{{costInfo?.hrpaymoney}}
|
||||
</se>
|
||||
</se-container>
|
||||
</div>
|
||||
@ -73,12 +72,20 @@
|
||||
<nz-card class="content-box" nzBordered>
|
||||
<nz-tabset>
|
||||
<nz-tab nzTitle="费用明细">
|
||||
<st #st [data]="data" [columns]="columns.cost" [page]="{ show: false}" [loading]="service.http.loading"
|
||||
[scroll]="{ x:'1200px',y: '370px' }"></st>
|
||||
<st #st [data]="costInfo?.ficoFeeLList" [columns]="columns.cost" [page]="{ show: false}"
|
||||
[loading]="service.http.loading" [scroll]="{ x:'1200px',y: '370px' }">
|
||||
<ng-template st-row="no" let-item let-index="index" let-column="column">
|
||||
{{ index+1 }}
|
||||
</ng-template>
|
||||
</st>
|
||||
</nz-tab>
|
||||
<nz-tab nzTitle="开票信息">
|
||||
<st #st [data]="data" [columns]="columns.requested" [page]="{ show: false}" [loading]="service.http.loading"
|
||||
[scroll]="{ x:'1200px',y: '370px' }"></st>
|
||||
<st #st [data]="costInfo?.ficoVatappDatailList" [columns]="columns.requested" [page]="{ show: false}"
|
||||
[loading]="service.http.loading" [scroll]="{ x:'1200px',y: '370px' }">
|
||||
<ng-template st-row="no" let-item let-index="index" let-column="column">
|
||||
{{ index+1 }}
|
||||
</ng-template>
|
||||
</st>
|
||||
</nz-tab>
|
||||
<nz-tab nzTitle="收款信息">
|
||||
<st #st [data]="data" [columns]="columns.collection" [page]="{ show: false}"
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
import { Component, OnInit, ViewChild } from '@angular/core';
|
||||
import { ActivatedRoute } from '@angular/router';
|
||||
import { STComponent, STColumn } from '@delon/abc/st';
|
||||
import { FreightAccountService } from '../../../services/freight-account.service';
|
||||
|
||||
@ -13,10 +14,25 @@ export class CostManagementDetailComponent implements OnInit {
|
||||
columns: { [key: string]: STColumn[] } = this.initST();
|
||||
|
||||
data = [];
|
||||
constructor(public service: FreightAccountService) {}
|
||||
|
||||
costInfo: any = {};
|
||||
constructor(public service: FreightAccountService, private route: ActivatedRoute) {
|
||||
const id = route.snapshot.params.id;
|
||||
this.loadDetail(id);
|
||||
}
|
||||
|
||||
ngOnInit(): void {}
|
||||
|
||||
loadDetail(id: any) {
|
||||
this.service.request(this.service.$api_get_cost_detail, { id }).subscribe(res => {
|
||||
console.log(res);
|
||||
|
||||
if (res) {
|
||||
this.costInfo = res;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
goBack() {
|
||||
history.go(-1);
|
||||
}
|
||||
@ -24,30 +40,30 @@ export class CostManagementDetailComponent implements OnInit {
|
||||
private initST(): { [key: string]: STColumn[] } {
|
||||
return {
|
||||
cost: [
|
||||
{ title: '序号', index: 'no' },
|
||||
{ title: '费用明细号', index: 'callNo' },
|
||||
{ title: '订单号', index: 'callNo' },
|
||||
{ title: '序号', render: 'no', width: 70 },
|
||||
{ title: '费用明细号', index: 'feeHId' },
|
||||
{ title: '订单号', index: 'billHId' },
|
||||
{ title: '订单日期', index: 'callNo' },
|
||||
{ title: '运单号', index: 'callNo' },
|
||||
{ title: '运单日期', index: 'callNo' },
|
||||
{ title: '运单号', index: 'waybillHId' },
|
||||
{ title: '运单日期', index: 'waybillDate' },
|
||||
{ title: '结算客户', index: 'callNo' },
|
||||
{ title: '订单费用类型', index: 'callNo' },
|
||||
{ title: '费用科目', index: 'callNo' },
|
||||
{ title: '税率', index: 'callNo' },
|
||||
{ title: '费用金额', index: 'callNo' },
|
||||
{ title: '收/付款金额', index: 'callNo' },
|
||||
{ title: '开/收票金额', index: 'callNo' }
|
||||
{ title: '订单费用类型', index: 'billLType' },
|
||||
{ title: '费用科目', index: 'feeSubId' },
|
||||
{ title: '税率', index: 'hrvatrate' },
|
||||
{ title: '费用金额', index: 'hrvatmoney' },
|
||||
{ title: '收/付款金额', index: 'armoney' },
|
||||
{ title: '开/收票金额', index: 'arkpmoney' }
|
||||
],
|
||||
requested: [
|
||||
{ title: '序号', index: 'no' },
|
||||
{ title: '费用明细号', index: 'callNo' },
|
||||
{ title: '发票申请', index: 'callNo' },
|
||||
{ title: '发票类型', index: 'callNo' },
|
||||
{ title: '发票号', index: 'callNo' },
|
||||
{ title: '发票日期', index: 'callNo' },
|
||||
{ title: '发票状态', index: 'callNo' },
|
||||
{ title: '应收金额', index: 'callNo' },
|
||||
{ title: '开票金额', index: 'callNo' }
|
||||
{ title: '序号', render: 'no', width: 70 },
|
||||
{ title: '费用明细号', index: 'feeHId' },
|
||||
{ title: '发票申请', index: 'vatappcode' },
|
||||
{ title: '发票类型', index: 'vatapptype' },
|
||||
{ title: '发票号', index: 'vatappcode' },
|
||||
{ title: '发票日期', index: 'vatappdate' },
|
||||
{ title: '发票状态', index: 'sts' },
|
||||
{ title: '应收金额', index: 'vatnotax' },
|
||||
{ title: '开票金额', index: 'vatmoney' }
|
||||
],
|
||||
collection: [
|
||||
{ title: '序号', index: 'no' },
|
||||
|
||||
@ -31,7 +31,7 @@
|
||||
<button nz-button nzType="primary" [nzLoading]="service.http.loading">导入费用</button>
|
||||
</div>
|
||||
</div>
|
||||
<st #st [data]="service.$mock_url" [columns]="columns"
|
||||
<st #st [data]="service.$api_get_cost_page" [columns]="columns"
|
||||
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, process: beforeReq }"
|
||||
[res]="{ reName: { list: 'data.records', total: 'data.total' } }"
|
||||
[page]="{ show: true, showSize: true, pageSizes: [10, 20, 30, 50, 100, 200, 300, 500, 1000] }"
|
||||
|
||||
@ -30,7 +30,17 @@ export class CostManagementComponent implements OnInit {
|
||||
|
||||
beforeReq = (requestOptions: STRequestOptions) => {
|
||||
if (this.sf) {
|
||||
Object.assign(requestOptions.body, { ...this.sf.value });
|
||||
Object.assign(requestOptions.body, {
|
||||
...this.sf.value,
|
||||
feedate: {
|
||||
start: this.sf.value.feedate?.[0] || '',
|
||||
end: this.sf.value.feedate?.[1] || ''
|
||||
},
|
||||
createTime: {
|
||||
start: this.sf.value.createTime?.[0] || '',
|
||||
end: this.sf.value.createTime?.[1] || ''
|
||||
}
|
||||
});
|
||||
}
|
||||
return requestOptions;
|
||||
};
|
||||
@ -94,48 +104,54 @@ export class CostManagementComponent implements OnInit {
|
||||
hidden: true
|
||||
}
|
||||
},
|
||||
receiveName: {
|
||||
feecode: {
|
||||
type: 'string',
|
||||
title: '费用单号',
|
||||
ui: { placeholder: '请输入' }
|
||||
},
|
||||
phone: {
|
||||
billHId: {
|
||||
type: 'string',
|
||||
title: '订单号',
|
||||
ui: { placeholder: '请输入' }
|
||||
},
|
||||
page: {
|
||||
waybillHId: {
|
||||
type: 'string',
|
||||
title: '运单号',
|
||||
ui: {
|
||||
placeholder: '请输入'
|
||||
}
|
||||
},
|
||||
createTi2me: {
|
||||
feedate: {
|
||||
title: '费用日期',
|
||||
type: 'string',
|
||||
ui: {
|
||||
widget: 'date',
|
||||
mode: 'range',
|
||||
widget: 'sl-from-to-search',
|
||||
format: 'yyyy-MM-dd',
|
||||
placeholder: '请选择',
|
||||
nzShowTime: true,
|
||||
visibleIf: {
|
||||
expand: (value: boolean) => value
|
||||
}
|
||||
} as SFDateWidgetSchema
|
||||
},
|
||||
pa2ge2: {
|
||||
feetype: {
|
||||
type: 'string',
|
||||
title: '费用类型',
|
||||
enum: [{ label: '全部', value: '全部' }],
|
||||
enum: [
|
||||
{ label: '全部', value: '' },
|
||||
{ label: '应收', value: 1 },
|
||||
{ label: '应付', value: 2 }
|
||||
],
|
||||
ui: {
|
||||
widget: 'select',
|
||||
placeholder: '请选择',
|
||||
visibleIf: {
|
||||
expand: (value: boolean) => value
|
||||
}
|
||||
}
|
||||
},
|
||||
default: ''
|
||||
},
|
||||
pa22ge2: {
|
||||
feeSubId: {
|
||||
type: 'string',
|
||||
title: '费用科目',
|
||||
enum: [{ label: '全部', value: '全部' }],
|
||||
@ -147,19 +163,20 @@ export class CostManagementComponent implements OnInit {
|
||||
}
|
||||
}
|
||||
},
|
||||
page2: {
|
||||
ltdId: {
|
||||
type: 'string',
|
||||
title: '网络货运人',
|
||||
enum: [{ label: '全部', value: '全部' }],
|
||||
ui: {
|
||||
widget: 'select',
|
||||
placeholder: '请选择',
|
||||
allowClear: true,
|
||||
asyncData: () => this.service.getNetworkFreightForwarder(),
|
||||
visibleIf: {
|
||||
expand: (value: boolean) => value
|
||||
}
|
||||
}
|
||||
},
|
||||
page21: {
|
||||
hrto: {
|
||||
type: 'string',
|
||||
title: '应付对象',
|
||||
enum: [{ label: '全部', value: '全部' }],
|
||||
@ -171,7 +188,7 @@ export class CostManagementComponent implements OnInit {
|
||||
}
|
||||
}
|
||||
},
|
||||
pag2e21: {
|
||||
arto: {
|
||||
type: 'string',
|
||||
title: '应收对象',
|
||||
enum: [{ label: '全部', value: '全部' }],
|
||||
@ -187,27 +204,33 @@ export class CostManagementComponent implements OnInit {
|
||||
title: '创建时间',
|
||||
type: 'string',
|
||||
ui: {
|
||||
widget: 'date',
|
||||
mode: 'range',
|
||||
widget: 'sl-from-to-search',
|
||||
format: 'yyyy-MM-dd',
|
||||
placeholder: '请选择',
|
||||
nzShowTime: true,
|
||||
visibleIf: {
|
||||
expand: (value: boolean) => value
|
||||
}
|
||||
} as SFDateWidgetSchema
|
||||
},
|
||||
pag2e221: {
|
||||
ishrhx: {
|
||||
type: 'string',
|
||||
title: '应付核销',
|
||||
enum: [{ label: '全部', value: '全部' }],
|
||||
enum: [
|
||||
{ label: '全部', value: '' },
|
||||
{ label: '否', value: 0 },
|
||||
{ label: '是', value: 1 }
|
||||
],
|
||||
ui: {
|
||||
widget: 'select',
|
||||
placeholder: '请选择',
|
||||
visibleIf: {
|
||||
expand: (value: boolean) => value
|
||||
}
|
||||
}
|
||||
},
|
||||
default: ''
|
||||
},
|
||||
pag2e121: {
|
||||
cno: {
|
||||
type: 'string',
|
||||
title: '结算客户',
|
||||
enum: [{ label: '全部', value: '全部' }],
|
||||
@ -225,22 +248,22 @@ export class CostManagementComponent implements OnInit {
|
||||
|
||||
private initST(): STColumn[] {
|
||||
return [
|
||||
{ title: '费用单号', index: 'description', width: 120 },
|
||||
{ title: '网络货运人', index: 'description', width: 120 },
|
||||
{ title: '订单号', index: 'description', width: 120 },
|
||||
{ title: '运单号', index: 'description', width: 120 },
|
||||
{ title: '费用日期', index: 'description', width: 150 },
|
||||
{ title: '费用类型', index: 'description', width: 100 },
|
||||
{ title: '应付核销', index: 'description', width: 100 },
|
||||
{ title: '结算客户', index: 'description', width: 100 },
|
||||
{ title: '应收对象', index: 'description', width: 100 },
|
||||
{ title: '应付对象', render: 'description1', width: 100 },
|
||||
{ title: '应收金额', render: 'description1', width: 100 },
|
||||
{ title: '应付金额', render: 'description1', width: 100 },
|
||||
{ title: '收/付款金额', render: 'description1', width: 120 },
|
||||
{ title: '开/收票金额', render: 'description1', width: 120 },
|
||||
{ title: '创建时间', index: 'updatedAt', type: 'date', width: 150 },
|
||||
{ title: '状态', render: 'description1', width: 90 },
|
||||
{ title: '费用单号', index: 'feecode', width: 120 },
|
||||
{ title: '网络货运人', index: 'ltdId', width: 120 },
|
||||
{ title: '订单号', index: 'billHId', width: 120 },
|
||||
{ title: '运单号', index: 'waybillHId', width: 120 },
|
||||
{ title: '费用日期', index: 'feedate', width: 150 },
|
||||
{ title: '费用类型', index: 'feetype', width: 100 },
|
||||
{ title: '应付核销', index: 'ishrhx', width: 100 },
|
||||
{ title: '结算客户', index: 'cno', width: 100 },
|
||||
{ title: '应收对象', index: 'artoname', width: 100 },
|
||||
{ title: '应付对象', render: 'hrtoname', width: 100 },
|
||||
{ title: '应收金额', render: 'armoeny', width: 100 },
|
||||
{ title: '应付金额', render: 'hrmoney', width: 100 },
|
||||
{ title: '收/付款金额', render: 'hrpaymoney', width: 120 },
|
||||
{ title: '开/收票金额', render: 'hrvatmoney', width: 120 },
|
||||
{ title: '创建时间', index: 'auditTime', type: 'date', width: 150 },
|
||||
{ title: '状态', render: 'sts', width: 90 },
|
||||
{
|
||||
title: '操作',
|
||||
fixed: 'right',
|
||||
@ -249,7 +272,7 @@ export class CostManagementComponent implements OnInit {
|
||||
buttons: [
|
||||
{
|
||||
text: '浏览',
|
||||
click: item => this.routeTo('/financial-management/cost-management/detail/1')
|
||||
click: item => this.routeTo('/financial-management/cost-management/detail/' + item.id)
|
||||
},
|
||||
{
|
||||
text: '审核',
|
||||
|
||||
@ -43,6 +43,12 @@ export class FreightAccountService extends ShipperBaseService {
|
||||
// 运营端获取账户余额交易明细
|
||||
$api_get_account_blance = '/api/fcc/accountBalanceDetail/getAccountBalanceByPage';
|
||||
|
||||
|
||||
// 查询费用单抬头
|
||||
$api_get_cost_page = '/api/fcc/ficoFeeH/list/page';
|
||||
// 根据费用头ID查询费用单及开票明细
|
||||
$api_get_cost_detail = '/api/fcc/ficoFeeL/detail';
|
||||
|
||||
constructor(public injector: Injector) {
|
||||
super(injector);
|
||||
}
|
||||
|
||||
@ -1,5 +1,8 @@
|
||||
<page-header-wrapper [title]="''"></page-header-wrapper>
|
||||
|
||||
<button nz-button [nzSize]="'small'" (click)="menuImport()" [nzLoading]="service.http.loading">
|
||||
导入
|
||||
<button nz-button (click)="menuImport(0)" [nzLoading]="service.http.loading">
|
||||
导入货主菜单
|
||||
</button>
|
||||
<button nz-button (click)="menuImport(1)" [nzLoading]="service.http.loading">
|
||||
导入运营后台菜单
|
||||
</button>
|
||||
@ -32,6 +32,7 @@ export class MenuManagerComponentsIndexComponent implements OnInit {
|
||||
{ name: '运营后台', appId: this.envSrv.env.appId, enName: 'tms-obc-web' }
|
||||
];
|
||||
this.selectedPlatform = this.platforms[0];
|
||||
// this.platformChange(this.selectedPlatform);
|
||||
}
|
||||
|
||||
platformChange(e: { name: string; appId: string }) {
|
||||
@ -44,7 +45,7 @@ export class MenuManagerComponentsIndexComponent implements OnInit {
|
||||
}
|
||||
|
||||
loadMenus(appId: string) {
|
||||
this.service.request(this.service.$api_get_all, { appId }, 'POST', true, 'FORM').subscribe(res => {
|
||||
this.service.request(this.service.$api_get_one, { appId }, 'POST', false).subscribe(res => {
|
||||
console.log(res);
|
||||
|
||||
this.menus = res;
|
||||
@ -55,12 +56,15 @@ export class MenuManagerComponentsIndexComponent implements OnInit {
|
||||
console.log('editChanged', event);
|
||||
}
|
||||
|
||||
menuImport() {
|
||||
menuImport(index: number) {
|
||||
this.selectedPlatform = this.platforms[index];
|
||||
if (!this.selectedPlatform) {
|
||||
return;
|
||||
}
|
||||
|
||||
this.service.http.request('GET', `assets/mocks/platform/${this.selectedPlatform.enName}.json`).subscribe((res: any) => {
|
||||
console.log(res);
|
||||
|
||||
this.addMenu(res.menu);
|
||||
});
|
||||
}
|
||||
|
||||
@ -1,466 +1,463 @@
|
||||
{
|
||||
"success": true,
|
||||
"data": {
|
||||
"menu": [
|
||||
{
|
||||
"text": "样例",
|
||||
"hideInBreadcrumb": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "用户中心",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"group": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "货主管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/demo/zorro",
|
||||
"children": [
|
||||
{
|
||||
"text": "企业列表",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/usercenter/freight/list"
|
||||
},
|
||||
{
|
||||
"text": "道运证",
|
||||
"hide": true,
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/usercenter/freight/list/view/:id"
|
||||
},
|
||||
{
|
||||
"text": "货主详情",
|
||||
"hide": true,
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/usercenter/freight/list/detail/:id"
|
||||
},
|
||||
{
|
||||
"text": "企业认证",
|
||||
"hide": true,
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/usercenter/freight/new"
|
||||
},
|
||||
{
|
||||
"text": "企业审核列表",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/usercenter/freight/enterprise"
|
||||
},
|
||||
{
|
||||
"text": "企业审核列表详情",
|
||||
"hide": true,
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/usercenter/freight/enterprise/view/:id"
|
||||
},
|
||||
{
|
||||
"text": "货主员工列表",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/usercenter/freight/user"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "司机管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/demo/zorro",
|
||||
"children": [
|
||||
{
|
||||
"text": "司机列表",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/usercenter/driver"
|
||||
},
|
||||
{
|
||||
"text": "司机详情",
|
||||
"hide": true,
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/usercenter/driver/detail/:id"
|
||||
},
|
||||
{
|
||||
"text": "车队长列表",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/usercenter/driver/captain"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "运力管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"group": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "车辆列表",
|
||||
"link": "/vehicle/list"
|
||||
},
|
||||
{
|
||||
"hide": true,
|
||||
"text": "车辆列表详情",
|
||||
"link": "/vehicle/list/detail/:id"
|
||||
},
|
||||
{
|
||||
"text": "车辆审核列表",
|
||||
"link": "/vehicle/audit"
|
||||
},
|
||||
{
|
||||
"hide": true,
|
||||
"text": "车辆审核列表详情",
|
||||
"link": "/vehicle/audit/detail/:id"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "货源管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"group": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "货源管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/supply-management/index",
|
||||
"reuse": true
|
||||
},
|
||||
{
|
||||
"text": "货源管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/supply-management/index",
|
||||
"hide": true
|
||||
},
|
||||
{
|
||||
"text": "货源详情",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/supply-management/bulk-detail",
|
||||
"hide": true
|
||||
},
|
||||
{
|
||||
"text": "修改货源",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/supply-management/vehicle-amend/:id",
|
||||
"hide": true
|
||||
},
|
||||
{
|
||||
"text": "货源详情",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/supply-management/vehicle-detail/:id",
|
||||
"hide": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "订单管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"group": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "整车订单",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/vehicle",
|
||||
"reuse": true
|
||||
},
|
||||
{
|
||||
"text": "大宗订单",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/bulk"
|
||||
},
|
||||
{
|
||||
"text": "结算单",
|
||||
"children": [
|
||||
{
|
||||
"text": "司机管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/driver-manage"
|
||||
},
|
||||
{
|
||||
"text": "车辆管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/car-manage"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "补录单",
|
||||
"children": [
|
||||
{
|
||||
"text": "补录运单",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/additionalc"
|
||||
},
|
||||
{
|
||||
"text": "补录运单详情",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/additionalc-detail/:id",
|
||||
"hide": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "风险单管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/risk"
|
||||
},
|
||||
{
|
||||
"text": "投诉管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/complaint"
|
||||
},
|
||||
{
|
||||
"text": "整车订单详情",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/vehicle-detail/:id",
|
||||
"hide": true
|
||||
},
|
||||
{
|
||||
"text": "大宗订单详情",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/bulk-detail/:id",
|
||||
"hide": true
|
||||
},
|
||||
{
|
||||
"text": "货源详情",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/vehicle-detail",
|
||||
"hide": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "运单管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"group": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "整车运单",
|
||||
"link": "/waybill-management/vehicle"
|
||||
},
|
||||
{
|
||||
"hide": true,
|
||||
"text": "整车运单详情",
|
||||
"link": "/waybill-management/vehicle-detail/:id"
|
||||
},
|
||||
{
|
||||
"text": "大宗运单",
|
||||
"link": "/waybill-management/bulk"
|
||||
},
|
||||
{
|
||||
"hide": true,
|
||||
"text": "大宗运单详情",
|
||||
"link": "/waybill-management/bulk-detail/:id"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "财务管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"group": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "费用管理",
|
||||
"link": "/financial-management/cost-management"
|
||||
},
|
||||
{
|
||||
"text": "费用浏览",
|
||||
"hide": true,
|
||||
"link": "/financial-management/cost-management/detail/:id"
|
||||
},
|
||||
{
|
||||
"text": "应收费用单",
|
||||
"hide": true,
|
||||
"link": "/financial-management/cost-management/expenses-receivable/:id"
|
||||
},
|
||||
{
|
||||
"text": "应付费用单",
|
||||
"hide": true,
|
||||
"link": "/financial-management/cost-management/expenses-payable/:id"
|
||||
},
|
||||
{
|
||||
"text": "货主账户",
|
||||
"link": "/financial-management/freight-account"
|
||||
},
|
||||
{
|
||||
"text": "货主账户详情",
|
||||
"hide": true,
|
||||
"link": "/financial-management/freight-account/detail/:id"
|
||||
},
|
||||
{
|
||||
"text": "司机账户",
|
||||
"link": "/financial-management/driver-account"
|
||||
},
|
||||
{
|
||||
"text": "司机账户详情",
|
||||
"hide": true,
|
||||
"link": "/financial-management/driver-account/detail/:id"
|
||||
},
|
||||
{
|
||||
"text": "充值记录",
|
||||
"link": "/financial-management/recharge-record"
|
||||
},
|
||||
{
|
||||
"text": "提现记录",
|
||||
"link": "/financial-management/withdrawals-record"
|
||||
},
|
||||
{
|
||||
"text": "提现详情",
|
||||
"hide": true,
|
||||
"link": "/financial-management/withdrawals-record/detail/:id"
|
||||
},
|
||||
{
|
||||
"text": "异常入金",
|
||||
"link": "/financial-management/abnormal-gold"
|
||||
},
|
||||
{
|
||||
"text": "支付记录",
|
||||
"link": "/financial-management/payment-record"
|
||||
},
|
||||
{
|
||||
"text": "交易流水",
|
||||
"link": "/financial-management/transaction-flow"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "票务管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"group": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "销项发票",
|
||||
"children": [
|
||||
{
|
||||
"text": "开票申请",
|
||||
"link": "/ticket/invoice-requested"
|
||||
},
|
||||
{
|
||||
"text": "开票订单明细",
|
||||
"link": "/ticket/invoice-requested/detail/:id",
|
||||
"hide": true
|
||||
},
|
||||
{
|
||||
"text": "销票处理",
|
||||
"link": "/ticket/cancellation-invoice"
|
||||
},
|
||||
{
|
||||
"text": "销票订单明细",
|
||||
"link": "/ticket/cancellation-invoice/detail/:id",
|
||||
"hide": true
|
||||
},
|
||||
{
|
||||
"text": "已开发票",
|
||||
"link": "/ticket/invoice-list"
|
||||
},
|
||||
{
|
||||
"text": "已开订单明细",
|
||||
"link": "/ticket/invoice-list/detail/:id",
|
||||
"hide": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "ETC发票",
|
||||
"children": [
|
||||
{
|
||||
"text": "申请发票",
|
||||
"link": "/ticket/etc-invoice-requested"
|
||||
},
|
||||
{
|
||||
"text": "运单开票记录",
|
||||
"link": "/ticket/etc-invoice-list"
|
||||
},
|
||||
{
|
||||
"text": "已开发票",
|
||||
"link": "/ticket/etc-invoiced-logs"
|
||||
},
|
||||
{
|
||||
"text": "黑名单",
|
||||
"link": "/ticket/etc-blacklist"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "合同管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"group": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "合同列表",
|
||||
"link": "/contract-management/list"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "系统设置",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"group": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "员工管理",
|
||||
"group": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "员工管理",
|
||||
"link": "/system/staff-management"
|
||||
},
|
||||
{
|
||||
"text": "角色管理",
|
||||
"link": "/system/role-management"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "CRM客户管理",
|
||||
"link": "/system/crm-management"
|
||||
},
|
||||
{
|
||||
"text": "结算客户管理",
|
||||
"link": "/system/close-account"
|
||||
},
|
||||
{
|
||||
"text": "网络货运人",
|
||||
"link": "/system/network-freight"
|
||||
},
|
||||
{
|
||||
"text": "基础设置",
|
||||
"link": "/system/basic-setting"
|
||||
},
|
||||
{
|
||||
"text": "车型车长配置",
|
||||
"link": "/system/cart-config"
|
||||
},
|
||||
{
|
||||
"text": "基础配置",
|
||||
"link": "/system/basic-config"
|
||||
},
|
||||
{
|
||||
"text": "系统操作日志",
|
||||
"link": "/system/system-logs"
|
||||
},
|
||||
{
|
||||
"text": "用户登录日志",
|
||||
"link": "/system/user-logs"
|
||||
},
|
||||
{
|
||||
"text": "版本发布记录",
|
||||
"link": "/system/version-logs"
|
||||
},
|
||||
{
|
||||
"text": "协议配置",
|
||||
"link": "/system/agreement-config"
|
||||
},
|
||||
{
|
||||
"text": "审核驳回理由配置",
|
||||
"link": "/system/audit-reason-config"
|
||||
},
|
||||
{
|
||||
"text": "系统配置",
|
||||
"link": "/system/system-config"
|
||||
},
|
||||
{
|
||||
"text": "货物名称配置",
|
||||
"link": "/system/goods-name-config"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
"menu": [
|
||||
{
|
||||
"text": "主导航",
|
||||
"hideInBreadcrumb": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "用户中心",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"group": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "货主管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/demo/zorro",
|
||||
"children": [
|
||||
{
|
||||
"text": "企业列表",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/usercenter/freight/list"
|
||||
},
|
||||
{
|
||||
"text": "道运证",
|
||||
"hide": true,
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/usercenter/freight/list/view/:id"
|
||||
},
|
||||
{
|
||||
"text": "货主详情",
|
||||
"hide": true,
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/usercenter/freight/list/detail/:id"
|
||||
},
|
||||
{
|
||||
"text": "企业认证",
|
||||
"hide": true,
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/usercenter/freight/new"
|
||||
},
|
||||
{
|
||||
"text": "企业审核列表",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/usercenter/freight/enterprise"
|
||||
},
|
||||
{
|
||||
"text": "企业审核列表详情",
|
||||
"hide": true,
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/usercenter/freight/enterprise/view/:id"
|
||||
},
|
||||
{
|
||||
"text": "货主员工列表",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/usercenter/freight/user"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "司机管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/demo/zorro",
|
||||
"children": [
|
||||
{
|
||||
"text": "司机列表",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/usercenter/driver"
|
||||
},
|
||||
{
|
||||
"text": "司机详情",
|
||||
"hide": true,
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/usercenter/driver/detail/:id"
|
||||
},
|
||||
{
|
||||
"text": "车队长列表",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/usercenter/driver/captain"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "运力管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"group": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "车辆列表",
|
||||
"link": "/vehicle/list"
|
||||
},
|
||||
{
|
||||
"hide": true,
|
||||
"text": "车辆列表详情",
|
||||
"link": "/vehicle/list/detail/:id"
|
||||
},
|
||||
{
|
||||
"text": "车辆审核列表",
|
||||
"link": "/vehicle/audit"
|
||||
},
|
||||
{
|
||||
"hide": true,
|
||||
"text": "车辆审核列表详情",
|
||||
"link": "/vehicle/audit/detail/:id"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "货源管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"group": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "货源管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/supply-management/index",
|
||||
"reuse": true
|
||||
},
|
||||
{
|
||||
"text": "货源管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/supply-management/index",
|
||||
"hide": true
|
||||
},
|
||||
{
|
||||
"text": "货源详情",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/supply-management/bulk-detail",
|
||||
"hide": true
|
||||
},
|
||||
{
|
||||
"text": "修改货源",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/supply-management/vehicle-amend/:id",
|
||||
"hide": true
|
||||
},
|
||||
{
|
||||
"text": "货源详情",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/supply-management/vehicle-detail/:id",
|
||||
"hide": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "订单管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"group": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "整车订单",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/vehicle",
|
||||
"reuse": true
|
||||
},
|
||||
{
|
||||
"text": "大宗订单",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/bulk"
|
||||
},
|
||||
{
|
||||
"text": "结算单",
|
||||
"children": [
|
||||
{
|
||||
"text": "司机管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/driver-manage"
|
||||
},
|
||||
{
|
||||
"text": "车辆管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/car-manage"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "补录单",
|
||||
"children": [
|
||||
{
|
||||
"text": "补录运单",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/additionalc"
|
||||
},
|
||||
{
|
||||
"text": "补录运单详情",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/additionalc-detail/:id",
|
||||
"hide": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "风险单管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/risk"
|
||||
},
|
||||
{
|
||||
"text": "投诉管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/complaint"
|
||||
},
|
||||
{
|
||||
"text": "整车订单详情",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/vehicle-detail/:id",
|
||||
"hide": true
|
||||
},
|
||||
{
|
||||
"text": "大宗订单详情",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/bulk-detail/:id",
|
||||
"hide": true
|
||||
},
|
||||
{
|
||||
"text": "货源详情",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"link": "/order-management/vehicle-detail",
|
||||
"hide": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "运单管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"group": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "整车运单",
|
||||
"link": "/waybill-management/vehicle"
|
||||
},
|
||||
{
|
||||
"hide": true,
|
||||
"text": "整车运单详情",
|
||||
"link": "/waybill-management/vehicle-detail/:id"
|
||||
},
|
||||
{
|
||||
"text": "大宗运单",
|
||||
"link": "/waybill-management/bulk"
|
||||
},
|
||||
{
|
||||
"hide": true,
|
||||
"text": "大宗运单详情",
|
||||
"link": "/waybill-management/bulk-detail/:id"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "财务管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"group": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "费用管理",
|
||||
"link": "/financial-management/cost-management"
|
||||
},
|
||||
{
|
||||
"text": "费用浏览",
|
||||
"hide": true,
|
||||
"link": "/financial-management/cost-management/detail/:id"
|
||||
},
|
||||
{
|
||||
"text": "应收费用单",
|
||||
"hide": true,
|
||||
"link": "/financial-management/cost-management/expenses-receivable/:id"
|
||||
},
|
||||
{
|
||||
"text": "应付费用单",
|
||||
"hide": true,
|
||||
"link": "/financial-management/cost-management/expenses-payable/:id"
|
||||
},
|
||||
{
|
||||
"text": "货主账户",
|
||||
"link": "/financial-management/freight-account"
|
||||
},
|
||||
{
|
||||
"text": "货主账户详情",
|
||||
"hide": true,
|
||||
"link": "/financial-management/freight-account/detail/:id"
|
||||
},
|
||||
{
|
||||
"text": "司机账户",
|
||||
"link": "/financial-management/driver-account"
|
||||
},
|
||||
{
|
||||
"text": "司机账户详情",
|
||||
"hide": true,
|
||||
"link": "/financial-management/driver-account/detail/:id"
|
||||
},
|
||||
{
|
||||
"text": "充值记录",
|
||||
"link": "/financial-management/recharge-record"
|
||||
},
|
||||
{
|
||||
"text": "提现记录",
|
||||
"link": "/financial-management/withdrawals-record"
|
||||
},
|
||||
{
|
||||
"text": "提现详情",
|
||||
"hide": true,
|
||||
"link": "/financial-management/withdrawals-record/detail/:id"
|
||||
},
|
||||
{
|
||||
"text": "异常入金",
|
||||
"link": "/financial-management/abnormal-gold"
|
||||
},
|
||||
{
|
||||
"text": "支付记录",
|
||||
"link": "/financial-management/payment-record"
|
||||
},
|
||||
{
|
||||
"text": "交易流水",
|
||||
"link": "/financial-management/transaction-flow"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "票务管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"group": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "销项发票",
|
||||
"children": [
|
||||
{
|
||||
"text": "开票申请",
|
||||
"link": "/ticket/invoice-requested"
|
||||
},
|
||||
{
|
||||
"text": "开票订单明细",
|
||||
"link": "/ticket/invoice-requested/detail/:id",
|
||||
"hide": true
|
||||
},
|
||||
{
|
||||
"text": "销票处理",
|
||||
"link": "/ticket/cancellation-invoice"
|
||||
},
|
||||
{
|
||||
"text": "销票订单明细",
|
||||
"link": "/ticket/cancellation-invoice/detail/:id",
|
||||
"hide": true
|
||||
},
|
||||
{
|
||||
"text": "已开发票",
|
||||
"link": "/ticket/invoice-list"
|
||||
},
|
||||
{
|
||||
"text": "已开订单明细",
|
||||
"link": "/ticket/invoice-list/detail/:id",
|
||||
"hide": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "ETC发票",
|
||||
"children": [
|
||||
{
|
||||
"text": "申请发票",
|
||||
"link": "/ticket/etc-invoice-requested"
|
||||
},
|
||||
{
|
||||
"text": "运单开票记录",
|
||||
"link": "/ticket/etc-invoice-list"
|
||||
},
|
||||
{
|
||||
"text": "已开发票",
|
||||
"link": "/ticket/etc-invoiced-logs"
|
||||
},
|
||||
{
|
||||
"text": "黑名单",
|
||||
"link": "/ticket/etc-blacklist"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "合同管理",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"group": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "合同列表",
|
||||
"link": "/contract-management/list"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "系统设置",
|
||||
"icon": "anticon anticon-dashboard",
|
||||
"group": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "员工管理",
|
||||
"group": true,
|
||||
"children": [
|
||||
{
|
||||
"text": "员工管理",
|
||||
"link": "/system/staff-management"
|
||||
},
|
||||
{
|
||||
"text": "角色管理",
|
||||
"link": "/system/role-management"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"text": "CRM客户管理",
|
||||
"link": "/system/crm-management"
|
||||
},
|
||||
{
|
||||
"text": "结算客户管理",
|
||||
"link": "/system/close-account"
|
||||
},
|
||||
{
|
||||
"text": "网络货运人",
|
||||
"link": "/system/network-freight"
|
||||
},
|
||||
{
|
||||
"text": "基础设置",
|
||||
"link": "/system/basic-setting"
|
||||
},
|
||||
{
|
||||
"text": "车型车长配置",
|
||||
"link": "/system/cart-config"
|
||||
},
|
||||
{
|
||||
"text": "基础配置",
|
||||
"link": "/system/basic-config"
|
||||
},
|
||||
{
|
||||
"text": "系统操作日志",
|
||||
"link": "/system/system-logs"
|
||||
},
|
||||
{
|
||||
"text": "用户登录日志",
|
||||
"link": "/system/user-logs"
|
||||
},
|
||||
{
|
||||
"text": "版本发布记录",
|
||||
"link": "/system/version-logs"
|
||||
},
|
||||
{
|
||||
"text": "协议配置",
|
||||
"link": "/system/agreement-config"
|
||||
},
|
||||
{
|
||||
"text": "审核驳回理由配置",
|
||||
"link": "/system/audit-reason-config"
|
||||
},
|
||||
{
|
||||
"text": "系统配置",
|
||||
"link": "/system/system-config"
|
||||
},
|
||||
{
|
||||
"text": "货物名称配置",
|
||||
"link": "/system/goods-name-config"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user