interface PcwebMenu {
title: string,
code: string,
path: string,
component: string,
sort: number,
requireAuth: boolean,
isshow: boolean,
url?: string,
remark?: string,
children?: PcwebMenu[],
auth?: {
label: string,
code: string,
requireAuth: boolean,
isshow: boolean,
remark?: string,
}[]
}