mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 12:56:13 +00:00
fix: page menu sort
This commit is contained in:
parent
866549ce26
commit
50a081c861
@ -12,7 +12,7 @@ function pages2routes(pages: Array<any>) {
|
|||||||
};
|
};
|
||||||
// page.type === 'layout' &&
|
// page.type === 'layout' &&
|
||||||
if (!page.redirect && children.length) {
|
if (!page.redirect && children.length) {
|
||||||
const items = children.sort((a, b) => a.order - b.order);
|
const items = children.sort((a, b) => a.sort - b.sort);
|
||||||
route.redirect = items[0].path;
|
route.redirect = items[0].path;
|
||||||
}
|
}
|
||||||
if (page.type === 'layout' && children.length) {
|
if (page.type === 'layout' && children.length) {
|
||||||
@ -20,7 +20,7 @@ function pages2routes(pages: Array<any>) {
|
|||||||
...child,
|
...child,
|
||||||
title: child.title,
|
title: child.title,
|
||||||
path: child.path,
|
path: child.path,
|
||||||
order: child.order,
|
sort: child.sort,
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
if (page.children) {
|
if (page.children) {
|
||||||
|
@ -3,14 +3,15 @@ import { TableOptions } from '@nocobase/database';
|
|||||||
export default {
|
export default {
|
||||||
name: 'pages',
|
name: 'pages',
|
||||||
title: '页面配置',
|
title: '页面配置',
|
||||||
model: 'BaseModel',
|
model: 'PageModel',
|
||||||
internal: true,
|
internal: true,
|
||||||
developerMode: true,
|
developerMode: true,
|
||||||
fields: [
|
fields: [
|
||||||
{
|
{
|
||||||
interface: 'sort',
|
interface: 'sort',
|
||||||
type: 'integer',
|
type: 'sort',
|
||||||
name: 'sort',
|
name: 'sort',
|
||||||
|
scope: ['parent_id'],
|
||||||
title: '排序',
|
title: '排序',
|
||||||
component: {
|
component: {
|
||||||
type: 'sort',
|
type: 'sort',
|
||||||
|
Loading…
Reference in New Issue
Block a user