|
@@ -163,15 +163,14 @@ const handleMenu = () => {
|
|
|
// 配置是否显示下半部分
|
|
// 配置是否显示下半部分
|
|
|
function setShowBottomPart(code: string): boolean {
|
|
function setShowBottomPart(code: string): boolean {
|
|
|
// 显示下半部分 这里保存的是市场对应的 code
|
|
// 显示下半部分 这里保存的是市场对应的 code
|
|
|
- const show = [
|
|
|
|
|
- 'outaccount_status', // 仓单贸易
|
|
|
|
|
- ];
|
|
|
|
|
|
|
+ const show: string[] = [''];
|
|
|
return show.includes(code);
|
|
return show.includes(code);
|
|
|
}
|
|
}
|
|
|
function menuClick(value: any) {
|
|
function menuClick(value: any) {
|
|
|
console.log('菜单: ', value);
|
|
console.log('菜单: ', value);
|
|
|
- setShowBottomPart(value.key);
|
|
|
|
|
- router.push({ name: value.key });
|
|
|
|
|
|
|
+ const key = value.key;
|
|
|
|
|
+ setShowBottomPart(key);
|
|
|
|
|
+ router.push({ name: key });
|
|
|
}
|
|
}
|
|
|
// 一级菜单图标
|
|
// 一级菜单图标
|
|
|
function fontIcon(code: string): string {
|
|
function fontIcon(code: string): string {
|