Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibizlab-generator
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibizlab-generator
提交
41b1c709
提交
41b1c709
编写于
12月 31, 2021
作者:
Shine-zwj
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:更新
上级
33358c3e
变更
6
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
40 行增加
和
22 行删除
+40
-22
menu-item.hbs
.../main/resources/templ/r7/@macro/menu-detail/menu-item.hbs
+1
-1
IbizIconText.vue
...pl/r7/app_{{apps}}/src/components/render/IbizIconText.vue
+0
-3
IbizMenuItem.vue
...pl/r7/app_{{apps}}/src/components/render/IbizMenuItem.vue
+31
-14
{{pages@APPINDEXVIEW}}.vue.hbs
...s}}/{{pages@APPINDEXVIEW}}/{{pages@APPINDEXVIEW}}.vue.hbs
+5
-2
index.ts.hbs
...n/resources/templ/r7/app_{{apps}}/src/router/index.ts.hbs
+1
-1
{{ctrls@APPMENU}}-menu.vue.hbs
...s}}/{{ctrls@APPMENU}}-menu/{{ctrls@APPMENU}}-menu.vue.hbs
+2
-1
未找到文件。
modules/ibizlab-generator-core/src/main/resources/templ/r7/@macro/menu-detail/menu-item.hbs
浏览文件 @
41b1c709
...
...
@@ -15,7 +15,7 @@
{{/if}}
{{#if
item
.
psSysImage
}}
{{#if
item
.
psSysImage
.
cssClass
}}
iconCls: "
{{
item
.
psSysImage
.
cssClass
}}
",
iconCl
as
s: "
{{
item
.
psSysImage
.
cssClass
}}
",
{{/if}}
{{#if
item
.
psSysImage
.
imagePath
}}
imgPath: "
{{
item
.
psSysImage
.
imagePath
}}
",
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/components/render/IbizIconText.vue
浏览文件 @
41b1c709
<
script
setup
lang=
"ts"
>
// props声明和默认值处理
interface
Props
{
text
?:
string
iconClass
?:
string
,
...
...
@@ -15,7 +13,6 @@ const props = withDefaults(defineProps<Props>(), {
const
hasIcon
=
computed
(()
=>
props
.
iconClass
||
props
.
imgPath
)
const
extraClass
=
{
"ibiz-icon-text--no-icon"
:
!
hasIcon
.
value
,
[
`ibiz-icon-text--
${
props
.
position
}
`
]:
hasIcon
.
value
,
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/components/render/IbizMenuItem.vue
浏览文件 @
41b1c709
<
script
setup
lang=
"ts"
>
import
{
IParam
}
from
"@ibiz-core"
;
import
{
UserOutlined
,
}
from
'@ant-design/icons-vue'
;
interface
Props
{
items
:
IParam
[];
items
:
IParam
[],
collapsed
:
boolean
,
}
const
props
=
withDefaults
(
defineProps
<
Props
>
(),
{});
const
props
=
withDefaults
(
defineProps
<
Props
>
(),
{
collapsed
:
false
,
});
</
script
>
<
template
>
<template
v-for=
"item in items"
:key=
"item.name"
>
<template
v-if=
"!item.items"
>
<a-menu-item
v-if=
"!item.hidden"
:key=
"item.name"
>
<a-menu-item
v-if=
"!item.hidden"
:key=
"item.name"
class=
"ibiz-menu-item"
>
<template
#
icon
>
<div
class=
"menu-icon"
>
<UserOutlined
/>
</div>
<IbizIconText
:iconClass=
"item.iconClass"
:imgPath=
"item.imgPath"
:text=
"collapsed && item.caption[0]"
/>
</
template
>
\{{item.caption}}
</a-menu-item>
</template>
<
template
v-else
>
<a-sub-menu
v-if=
"!item.hidden"
:key=
"item.name"
>
<a-sub-menu
v-if=
"!item.hidden"
:key=
"item.name"
class=
"ibiz-menu-item"
>
<template
#
icon
>
<div
class=
"menu-icon"
>
<UserOutlined
/>
</div>
<IbizIconText
:iconClass=
"item.iconClass"
:imgPath=
"item.imgPath"
:text=
"collapsed && item.caption[0]"
/>
</
template
>
<
template
#
title
>
\
{{
item
.
caption
}}
</
template
>
<IbizMenuItem
:items=
"item.items"
/>
...
...
@@ -36,5 +32,26 @@ const props = withDefaults(defineProps<Props>(), {});
</template>
<
style
lang=
"scss"
>
.ibiz-icon-text
{
display
:
flex
!
important
;
align-items
:
center
;
}
.ant-menu-submenu-popup
{
.ibiz-menu-item
{
display
:
flex
!
important
;
}
.ant-menu-submenu-title
{
display
:
flex
!
important
;
width
:
100%
;
}
}
.ant-menu-inline-collapsed
{
.ibiz-menu-item
{
position
:
relative
;
.ibiz-icon-text
{
position
:
absolute
;
right
:
calc
(
50%
-
8px
);
}
}
}
</
style
>
\ No newline at end of file
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/page/{{appModules}}/{{pages@APPINDEXVIEW}}/{{pages@APPINDEXVIEW}}.vue.hbs
浏览文件 @
41b1c709
...
...
@@ -32,6 +32,9 @@ const emit = defineEmits<ViewEmit>();
// 安装功能模块,提供状态和能力方法
const
{
state
}
=
new
IndexView
(
ViewConfig
).
moduleInstall
(
props
,
emit
);
const
collapsed
:
Ref
<
boolean
>
=
ref
(
false
);
const
collapsedChange
=
()
=>
{
collapsed
.
value
=
!
collapsed
.
value
;
}
</script>
<template>
...
...
@@ -42,9 +45,9 @@ const collapsed: Ref<boolean> = ref(false);
<MenuUnfoldOutlined
v-if=
"collapsed"
class=
"trigger"
@
click=
"
() => (collapsed = !collapsed)
"
@
click=
"
collapsedChange
"
/>
<MenuFoldOutlined
v-else
class=
"trigger"
@
click=
"
() => (collapsed = !collapsed)
"
/>
<MenuFoldOutlined
v-else
class=
"trigger"
@
click=
"
collapsedChange
"
/>
</div>
</template>
<template
#
user
>
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/router/index.ts.hbs
浏览文件 @
41b1c709
...
...
@@ -32,7 +32,7 @@ const routes = [
viewType: "
{{
appView
.
viewType
}}
",
{{#if
appView
.
psSysImage
}}
imgPath: "
{{
appView
.
psSysImage
.
imagePath
}}
",
iconCls: "
{{
appView
.
psSysImage
.
cssClass
}}
",
iconCl
as
s: "
{{
appView
.
psSysImage
.
cssClass
}}
",
{{/if}}
parameters: [
{ pathName: "apps", parameterName: "app" },
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/widgets/{{appEntities}}/{{ctrls@APPMENU}}-menu/{{ctrls@APPMENU}}-menu.vue.hbs
浏览文件 @
41b1c709
...
...
@@ -25,11 +25,12 @@ const { state, menuSelect } = new MenuControl(CtrlConfig).moduleInstall(props, e
<template>
<a-menu
class=
"ibiz-menu"
v-model:openKeys=
"state.defaultOpens"
v-model:selectedKeys=
"state.defaultSelect"
:mode=
"Object.is('LEFT', state.menuAlign) ? 'inline' : 'horizontal'"
@
select=
"menuSelect"
>
<IbizMenuItem
:items=
"state.menus"
/>
<IbizMenuItem
:items=
"state.menus"
:collapsed=
"collapsed"
/>
</a-menu>
</template>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录