Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
T
TrainSys
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
苏州培训方案
TrainSys
提交
4c4face0
提交
4c4face0
编写于
4月 21, 2023
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
zhujiamin 发布系统代码 [TrainSys,网页端]
上级
c765c1f1
变更
3
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
100 行增加
和
95 行删除
+100
-95
exp-view-base.tsx
...Web/src/components/layout/exp-view-base/exp-view-base.tsx
+11
-12
list-exp-view.tsx
app_Web/src/components/views/list-exp-view/list-exp-view.tsx
+37
-32
tree-exp-view.tsx
app_Web/src/components/views/tree-exp-view/tree-exp-view.tsx
+52
-51
未找到文件。
app_Web/src/components/layout/exp-view-base/exp-view-base.tsx
浏览文件 @
4c4face0
...
@@ -13,14 +13,13 @@ export const ExpViewBase = defineComponent({
...
@@ -13,14 +13,13 @@ export const ExpViewBase = defineComponent({
},
},
expBarModel
:
{
expBarModel
:
{
type
:
Object
as
PropType
<
IExpBarModel
>
,
type
:
Object
as
PropType
<
IExpBarModel
>
,
required
:
true
,
},
},
},
},
setup
(
props
)
{
setup
(
props
)
{
const
ns
=
useNamespace
(
'exp-view'
);
const
ns
=
useNamespace
(
'exp-view'
);
const
cssVars
=
computed
(()
=>
{
const
cssVars
=
computed
(()
=>
{
if
(
props
.
controller
.
model
.
expBarWidth
)
{
if
(
props
.
controller
.
model
?
.
expBarWidth
)
{
return
ns
.
cssVarBlock
({
return
ns
.
cssVarBlock
({
'left-width'
:
`
${
props
.
controller
.
model
.
expBarWidth
}
px`
,
'left-width'
:
`
${
props
.
controller
.
model
.
expBarWidth
}
px`
,
});
});
...
@@ -31,8 +30,8 @@ export const ExpViewBase = defineComponent({
...
@@ -31,8 +30,8 @@ export const ExpViewBase = defineComponent({
// 是否显示头部
// 是否显示头部
const
isShowHeader
=
computed
(()
=>
{
const
isShowHeader
=
computed
(()
=>
{
return
(
return
(
props
.
expBarModel
.
showTitleBar
||
props
.
expBarModel
?
.
showTitleBar
||
props
.
expBarModel
.
enableSearch
||
props
.
expBarModel
?
.
enableSearch
||
props
.
controller
.
model
.
toolbar
props
.
controller
.
model
.
toolbar
);
);
});
});
...
@@ -101,33 +100,33 @@ export const ExpViewBase = defineComponent({
...
@@ -101,33 +100,33 @@ export const ExpViewBase = defineComponent({
<
div
<
div
class=
{
this
.
ns
.
be
(
'exp-bar-header-left'
,
'caption'
)
}
class=
{
this
.
ns
.
be
(
'exp-bar-header-left'
,
'caption'
)
}
>
>
{
this
.
expBarModel
.
showTitleBar
&&
{
this
.
expBarModel
?
.
showTitleBar
&&
(
this
.
expBarModel
.
getPSSysImage
?
(
(
this
.
expBarModel
?
.
getPSSysImage
?
(
[
[
<
app
-
icon
<
app
-
icon
class=
{
this
.
ns
.
be
(
'caption'
,
'icon'
)
}
class=
{
this
.
ns
.
be
(
'caption'
,
'icon'
)
}
icon=
{
this
.
expBarModel
.
getPSSysImage
}
icon=
{
this
.
expBarModel
?
.
getPSSysImage
}
></
app
-
icon
>,
></
app
-
icon
>,
<
span
<
span
class=
{
this
.
ns
.
be
(
'caption'
,
'text'
)
}
class=
{
this
.
ns
.
be
(
'caption'
,
'text'
)
}
title=
{
this
.
expBarModel
.
title
}
title=
{
this
.
expBarModel
?
.
title
}
>
>
{
this
.
expBarModel
.
title
}
{
this
.
expBarModel
?
.
title
}
</
span
>,
</
span
>,
]
]
)
:
(
)
:
(
<
span
<
span
class=
{
this
.
ns
.
be
(
'caption'
,
'text'
)
}
class=
{
this
.
ns
.
be
(
'caption'
,
'text'
)
}
title=
{
this
.
expBarModel
.
title
}
title=
{
this
.
expBarModel
?
.
title
}
>
>
{
this
.
expBarModel
.
title
}
{
this
.
expBarModel
?
.
title
}
</
span
>
</
span
>
))
}
))
}
</
div
>
</
div
>
</
div
>
</
div
>
<
div
class=
{
this
.
ns
.
b
(
'exp-bar-header-right'
)
}
>
<
div
class=
{
this
.
ns
.
b
(
'exp-bar-header-right'
)
}
>
<
div
class=
{
this
.
ns
.
e
(
'quick-search'
)
}
>
<
div
class=
{
this
.
ns
.
e
(
'quick-search'
)
}
>
{
c
.
complete
&&
this
.
expBarModel
.
enableSearch
&&
(
{
c
.
complete
&&
this
.
expBarModel
?
.
enableSearch
&&
(
<
quick
-
search
<
quick
-
search
value=
{
c
.
query
}
value=
{
c
.
query
}
viewMode=
{
c
.
modal
.
mode
}
viewMode=
{
c
.
modal
.
mode
}
...
...
app_Web/src/components/views/list-exp-view/list-exp-view.tsx
浏览文件 @
4c4face0
...
@@ -7,6 +7,7 @@ import {
...
@@ -7,6 +7,7 @@ import {
Ref
,
Ref
,
toRef
,
toRef
,
getCurrentInstance
,
getCurrentInstance
,
VNode
,
}
from
'vue'
;
}
from
'vue'
;
import
qs
from
'qs'
;
import
qs
from
'qs'
;
import
{
import
{
...
@@ -53,19 +54,15 @@ export const ListExpView = defineComponent({
...
@@ -53,19 +54,15 @@ export const ListExpView = defineComponent({
return
{
c
,
defaultSelectKeys
,
routeViewKey
};
return
{
c
,
defaultSelectKeys
,
routeViewKey
};
},
},
render
()
{
render
()
{
if
(
this
.
c
.
complete
)
{
const
isRouter
=
this
.
c
.
context
.
isRouter
===
true
;
const
isRouter
=
this
.
c
.
context
.
isRouter
===
true
;
let
listComponent
:
VNode
|
null
=
null
;
let
expBarModel
=
null
;
if
(
this
.
c
.
complete
)
{
const
{
listExpBar
}
=
this
.
c
.
model
;
const
{
listExpBar
}
=
this
.
c
.
model
;
const
{
list
}
=
listExpBar
;
const
{
list
}
=
listExpBar
;
return
(
expBarModel
=
listExpBar
;
<
exp
-
view
-
base
controller=
{
this
.
c
}
expBarModel=
{
this
.
c
.
model
.
listExpBar
}
scopedSlots=
{
{
default
:
()
=>
{
if
(
this
.
c
.
providers
[
list
.
name
])
{
if
(
this
.
c
.
providers
[
list
.
name
])
{
const
listComp
=
this
.
c
.
providers
[
list
.
name
].
component
;
listComponent
=
h
(
this
.
c
.
providers
[
list
.
name
].
component
,
{
return
h
(
listComp
,
{
props
:
{
props
:
{
modelData
:
list
,
modelData
:
list
,
context
:
this
.
c
.
context
,
context
:
this
.
c
.
context
,
...
@@ -80,8 +77,17 @@ export const ListExpView = defineComponent({
...
@@ -80,8 +77,17 @@ export const ListExpView = defineComponent({
},
},
});
});
}
}
},
}
return
(
<
exp
-
view
-
base
controller=
{
this
.
c
}
expBarModel=
{
expBarModel
}
scopedSlots=
{
{
default
:
()
=>
listComponent
,
expView
:
()
=>
{
expView
:
()
=>
{
if
(
this
.
c
.
complete
)
{
const
{
listExpBar
}
=
this
.
c
.
model
;
const
{
list
}
=
listExpBar
;
if
(
!
list
.
navView
)
{
if
(
!
list
.
navView
)
{
return
null
;
return
null
;
}
}
...
@@ -101,11 +107,10 @@ export const ListExpView = defineComponent({
...
@@ -101,11 +107,10 @@ export const ListExpView = defineComponent({
},
},
key
:
this
.
c
.
navItem
.
key
,
key
:
this
.
c
.
navItem
.
key
,
});
});
}
},
},
}
}
}
}
></
exp
-
view
-
base
>
></
exp
-
view
-
base
>
);
);
}
return
null
;
},
},
});
});
app_Web/src/components/views/tree-exp-view/tree-exp-view.tsx
浏览文件 @
4c4face0
...
@@ -8,6 +8,7 @@ import {
...
@@ -8,6 +8,7 @@ import {
ref
,
ref
,
Ref
,
Ref
,
toRef
,
toRef
,
VNode
,
watch
,
watch
,
}
from
'vue'
;
}
from
'vue'
;
...
@@ -53,17 +54,14 @@ export const TreeExpView = defineComponent({
...
@@ -53,17 +54,14 @@ export const TreeExpView = defineComponent({
},
},
render
()
{
render
()
{
const
{
currentNavKey
,
navViewParams
}
=
this
.
c
;
const
{
currentNavKey
,
navViewParams
}
=
this
.
c
;
let
treeComponent
:
VNode
|
null
=
null
;
let
expBarModel
=
null
;
if
(
this
.
c
.
complete
)
{
if
(
this
.
c
.
complete
)
{
return
(
<
exp
-
view
-
base
controller=
{
this
.
c
}
expBarModel=
{
this
.
c
.
model
.
treeExpBar
}
scopedSlots=
{
{
default
:
()
=>
{
const
{
tree
}
=
this
.
c
.
model
;
const
{
tree
}
=
this
.
c
.
model
;
expBarModel
=
this
.
c
.
model
.
treeExpBar
;
if
(
this
.
c
.
providers
[
tree
.
name
])
{
if
(
this
.
c
.
providers
[
tree
.
name
])
{
const
comp
=
this
.
c
.
providers
[
tree
.
name
].
component
;
treeComponent
=
h
(
this
.
c
.
providers
[
tree
.
name
].
component
,
{
return
h
(
comp
,
{
props
:
{
props
:
{
modelData
:
tree
,
modelData
:
tree
,
context
:
this
.
c
.
context
,
context
:
this
.
c
.
context
,
...
@@ -76,12 +74,17 @@ export const TreeExpView = defineComponent({
...
@@ -76,12 +74,17 @@ export const TreeExpView = defineComponent({
},
},
});
});
}
}
},
}
return
(
<
exp
-
view
-
base
controller=
{
this
.
c
}
expBarModel=
{
expBarModel
}
scopedSlots=
{
{
default
:
()
=>
treeComponent
,
expView
:
()
=>
{
expView
:
()
=>
{
if
(
!
currentNavKey
)
{
if
(
!
currentNavKey
)
{
return
;
return
;
}
}
if
(
!
this
.
c
.
context
.
isRouter
)
{
if
(
!
this
.
c
.
context
.
isRouter
)
{
// 非路由模式下绘制嵌入视图
// 非路由模式下绘制嵌入视图
return
h
(
'ViewShell'
,
{
return
h
(
'ViewShell'
,
{
...
@@ -104,7 +107,5 @@ export const TreeExpView = defineComponent({
...
@@ -104,7 +107,5 @@ export const TreeExpView = defineComponent({
}
}
}
}
></
exp
-
view
-
base
>
></
exp
-
view
-
base
>
);
);
}
return
null
;
},
},
});
});
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录