Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
3cf49ebd
提交
3cf49ebd
编写于
11月 15, 2022
作者:
tony001
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:更新工作流
上级
b12dd67e
变更
5
展开全部
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
221 行增加
和
20 行删除
+221
-20
redirect.svg
public/assets/img/redirect.svg
+73
-0
redirect.svg
src/assets/img/redirect.svg
+73
-0
app-message-popover.vue
src/components/app-message-popover/app-message-popover.vue
+17
-7
app-todo-list.vue
src/components/app-todo-list/app-todo-list.vue
+16
-5
ui-service.ts
src/uiservice/ui-service.ts
+42
-8
未找到文件。
public/assets/img/redirect.svg
0 → 100644
浏览文件 @
3cf49ebd
此差异已折叠。
点击以展开。
src/assets/img/redirect.svg
0 → 100644
浏览文件 @
3cf49ebd
此差异已折叠。
点击以展开。
src/components/app-message-popover/app-message-popover.vue
浏览文件 @
3cf49ebd
...
...
@@ -171,12 +171,22 @@ export default class AppMessagePopover extends Vue {
* 点击标签事件
*/
public
handleTag
(
data
:
any
)
{
if
(
!
data
)
return
this
.
$message
.
error
(
"未获取到标签内容"
);
// 拼接要打开的窗口地址
const
baseUrl
:
any
=
Environment
.
BaseUrl
;
const
openUrl
:
any
=
baseUrl
+
`/wfcore/mytasks/
${
data
.
processDefinitionKey
}
/web/
${
data
.
processInstanceBusinessKey
}
/usertasks/
${
data
.
taskDefinitionKey
}
`
;
// 打开新窗口
window
.
open
(
openUrl
,
'_blank'
);
if
(
!
data
)
return
;
const
baseUrl
:
any
=
Environment
.
BaseUrl
;
this
.
$http
.
get
(
baseUrl
+
`/wfcore/mytasks/
${
data
.
processDefinitionKey
}
/web/
${
data
.
processInstanceBusinessKey
}
/usertasks/
${
data
.
taskDefinitionKey
}
`
).
then
((
response
:
any
)
=>
{
const
{
status
,
data
}
=
response
;
if
(
status
&&
status
==
200
)
{
const
url
=
data
.
substr
(
data
.
indexOf
(
"#"
)
+
1
);
const
indexPath
=
this
.
$viewTool
.
getIndexRoutePath
(
this
.
$route
);
this
.
$router
.
push
({
path
:
`
${
indexPath
}${
url
}
`
});
}
else
{
const
message
=
data
.
message
?
data
.
message
:
'跳转失败'
;
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
message
});
}
}).
catch
((
error
:
any
)
=>
{
const
message
=
error
.
message
?
error
.
message
:
'跳转失败'
;
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
message
});
})
}
/**
...
...
@@ -223,5 +233,5 @@ export default class AppMessagePopover extends Vue {
</
script
>
<
style
lang=
'less'
>
@import "app-message-popover.less";
@import "app-message-popover.less";
</
style
>
\ No newline at end of file
src/components/app-todo-list/app-todo-list.vue
浏览文件 @
3cf49ebd
...
...
@@ -51,7 +51,8 @@ export default class AppTodoList extends Vue {
}
}
}).
catch
((
error
:
any
)
=>
{
console
.
warn
(
"加载数据错误"
);
const
message
=
error
.
message
?
error
.
message
:
'加载数据错误'
;
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
message
});
})
}
...
...
@@ -61,11 +62,21 @@ export default class AppTodoList extends Vue {
*/
public
handleClick
(
data
:
any
)
{
if
(
!
data
)
return
;
// 拼接要打开的窗口地址
const
baseUrl
:
any
=
Environment
.
BaseUrl
;
const
openUrl
:
any
=
baseUrl
+
`/wfcore/mytasks/
${
data
.
processDefinitionKey
}
/web/
${
data
.
processInstanceBusinessKey
}
/usertasks/
${
data
.
taskDefinitionKey
}
`
;
// 打开新窗口
window
.
open
(
openUrl
,
'_blank'
);
this
.
$http
.
get
(
baseUrl
+
`/wfcore/mytasks/
${
data
.
processDefinitionKey
}
/web/
${
data
.
processInstanceBusinessKey
}
/usertasks/
${
data
.
taskDefinitionKey
}
`
).
then
((
response
:
any
)
=>
{
const
{
status
,
data
}
=
response
;
if
(
status
&&
status
==
200
)
{
const
url
=
data
.
substr
(
data
.
indexOf
(
"#"
)
+
1
);
const
indexPath
=
this
.
$viewTool
.
getIndexRoutePath
(
this
.
$route
);
this
.
$router
.
push
({
path
:
`
${
indexPath
}${
url
}
`
});
}
else
{
const
message
=
data
.
message
?
data
.
message
:
'跳转失败'
;
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
message
});
}
}).
catch
((
error
:
any
)
=>
{
const
message
=
error
.
message
?
error
.
message
:
'跳转失败'
;
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
message
});
})
}
}
...
...
src/uiservice/ui-service.ts
浏览文件 @
3cf49ebd
...
...
@@ -13,18 +13,34 @@ export default class UIService {
/**
* Vue 状态管理器
*
* @pr
ivate
* @pr
otected
* @type {(any | null)}
* @memberof UIService
*/
private
$store
:
Store
<
any
>
|
null
=
null
;
protected
$store
:
Store
<
any
>
|
null
=
null
;
/**
* 所有关联视图
*
* @memberof IBIZSample0021UIServiceBase
*/
protected
allViewMap
:
Map
<
string
,
Object
>
=
new
Map
();
/**
* 流程状态数组
*
* @protected
* @type {Array<string>}
* @memberof UIService
*/
protected
InWorkflowArray
:
Array
<
string
>
=
[
'todo'
,
'toread'
];
/**
* 所依赖权限服务
*
* @memberof UIService
*/
public
authService
:
any
;
public
authService
:
any
;
/**
* Creates an instance of UIService.
...
...
@@ -64,13 +80,31 @@ export default class UIService {
* @param tag 资源标识
* @memberof UIService
*/
public
getResourceOPPrivs
(
tag
:
any
)
{
if
(
!
this
.
authService
)
{
public
getResourceOPPrivs
(
tag
:
any
)
{
if
(
!
this
.
authService
)
{
this
.
authService
=
new
AuthService
(
this
.
getStore
());
}
return
this
.
authService
.
getResourcePermission
(
this
.
authService
.
sysOPPrivsMap
.
get
(
tag
))?
1
:
0
;
}
return
this
.
authService
.
getResourcePermission
(
this
.
authService
.
sysOPPrivsMap
.
get
(
tag
))
?
1
:
0
;
}
/**
* 获取工作流视图
*
* @memberof UIService
*/
public
getWFView
()
{
let
result
=
this
.
allViewMap
.
get
(
"WFEDITVIEW:"
);
if
(
!
result
)
{
const
allViews
:
any
=
this
.
allViewMap
.
values
();
for
(
let
value
of
allViews
)
{
if
(
value
.
viewType
===
'DEWFDYNAEDITVIEW'
){
return
value
;
}
}
}
else
{
return
result
;
}
}
}
\ No newline at end of file
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录