Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
8a70c6ec
authored
2022-11-28 16:33:47 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:待办箱
1 parent
3a5d3667
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
26 additions
and
11 deletions
src/store/getters.js
src/store/modules/app.js
src/views/workflow/mixin/public.js
src/views/workflow/workFrame1.vue
src/views/workflow/workFrameView1.vue
src/views/ywbl/dbx/dbx.vue
src/views/ywbl/ybx/ybx.vue
src/store/getters.js
View file @
8a70c6e
...
...
@@ -12,7 +12,5 @@ const getters = {
addDict
:
state
=>
state
.
dict
.
addDict
,
dictData
:
state
=>
state
.
dict
.
dictData
,
djbxx
:
state
=>
state
.
djbxx
.
djbxx
,
// 流程图转件
transfer
:
state
=>
state
.
workflow
.
transfer
}
export
default
getters
...
...
src/store/modules/app.js
View file @
8a70c6e
...
...
@@ -3,7 +3,7 @@ import Cookies from 'js-cookie'
const
state
=
{
size
:
'small'
,
theme
:
'#409EFF'
,
splitScreen
:
false
splitScreen
:
false
,
}
const
mutations
=
{
...
...
@@ -16,7 +16,7 @@ const mutations = {
},
SET_SCREEN
(
state
,
val
)
{
state
.
splitScreen
=
val
;
}
}
,
}
const
actions
=
{
...
...
@@ -28,7 +28,7 @@ const actions = {
},
settScreen
({
commit
},
val
)
{
commit
(
'SET_SCREEN'
,
val
)
}
}
,
}
export
default
{
...
...
src/views/workflow/mixin/public.js
View file @
8a70c6e
import
{
getForm
}
from
"../flowform"
;
import
{
getHomeNoticeList
}
from
"@/api/home.js"
export
default
{
data
()
{
return
{
noticeList
:
[],
}
},
created
()
{
getHomeNoticeList
().
then
(
res
=>
{
if
(
res
.
result
)
{
this
.
noticeList
=
res
.
result
.
noticeList
}
})
},
methods
:
{
//右侧表单选项卡事件
beforeLeave
(
activeName
,
oldActiveName
)
{
...
...
src/views/workflow/workFrame1.vue
View file @
8a70c6e
...
...
@@ -72,6 +72,7 @@
@import
"./workFrame.scss"
;
</
style
>
<
script
>
import
{
mapGetters
}
from
"vuex"
import
WorkFlow
from
"./mixin/index"
import
publicFlow
from
"./mixin/public.js"
import
{
getStepFormInfo
}
from
"@/api/fqsq.js"
;
...
...
@@ -89,7 +90,6 @@ export default {
mixins
:
[
WorkFlow
,
publicFlow
],
data
()
{
return
{
noticeList
:
[],
isDialog
:
false
,
// 流程图
// 折叠
...
...
src/views/workflow/workFrameView1.vue
View file @
8a70c6e
...
...
@@ -16,6 +16,7 @@
<span
class=
"iconName"
>
{{
item
.
name
}}
</span>
</li>
</ul>
<NoticeBar
class=
"NoticeBar"
:noticeList=
"noticeList"
/>
</div>
<!-- 内容框架 -->
<div
class=
"containerFrame"
>
...
...
@@ -60,7 +61,6 @@
</div>
</div>
</
template
>
<
style
scoped
lang=
'scss'
>
@import
"~@/styles/mixin.scss"
;
@import
"./workFrame.scss"
;
...
...
@@ -72,9 +72,13 @@ import {
getStepFormInfo
}
from
"@/api/fqsq.js"
import
publicFlow
from
"./mixin/public.js"
import
NoticeBar
from
'@/components/NoticeBar/index'
import
{
getWorkFlowImage
}
from
"@/api/jsydsyqFlow.js"
export
default
{
mixins
:
[
publicFlow
],
components
:
{
NoticeBar
},
data
()
{
return
{
// 流程图
...
...
src/views/ywbl/dbx/dbx.vue
View file @
8a70c6e
...
...
@@ -172,8 +172,8 @@ export default {
})
},
ywhClick
(
item
)
{
const
{
href
}
=
this
.
$router
.
resolve
(
'/workFrame?bsmSlsq='
+
item
.
bsmSlsq
+
'&bestepid='
+
item
.
bestepid
+
'&bsmBusiness='
+
'&sqywbm='
+
item
.
djywbm
);
//
const { href } = this.$router.resolve('/workFramecs?bsmSlsq=' + item.bsmSlsq + '&bestepid=' + item.bestepid + '&bsmBusiness=' + '&sqywbm=' + item.djywbm);
//
const { href } = this.$router.resolve('/workFrame?bsmSlsq=' + item.bsmSlsq + '&bestepid=' + item.bestepid + '&bsmBusiness=' + '&sqywbm=' + item.djywbm);
const
{
href
}
=
this
.
$router
.
resolve
(
'/workFramecs?bsmSlsq='
+
item
.
bsmSlsq
+
'&bestepid='
+
item
.
bestepid
+
'&bsmBusiness='
+
'&sqywbm='
+
item
.
djywbm
);
window
.
open
(
href
,
'_blank'
);
//从待办箱进入的调取任务领取接口
claimTask
(
item
.
bsmSlsq
,
item
.
bestepid
)
...
...
src/views/ywbl/ybx/ybx.vue
View file @
8a70c6e
...
...
@@ -135,8 +135,8 @@ export default {
this
.
queryClick
()
},
ywhClick
(
item
)
{
const
{
href
}
=
this
.
$router
.
resolve
(
'/workFrameView?bsmSlsq='
+
item
.
bsmSlsq
+
'&bestepid='
+
item
.
bestepid
+
'&bsmBusiness='
+
'&viewtype=1'
);
//
const { href } = this.$router.resolve('/workFrameViewcs?bsmSlsq=' + item.bsmSlsq + '&bestepid=' + item.bestepid + '&bsmBusiness=' + '&viewtype=1');
//
const { href } = this.$router.resolve('/workFrameView?bsmSlsq=' + item.bsmSlsq + '&bestepid=' + item.bestepid + '&bsmBusiness=' + '&viewtype=1');
const
{
href
}
=
this
.
$router
.
resolve
(
'/workFrameViewcs?bsmSlsq='
+
item
.
bsmSlsq
+
'&bestepid='
+
item
.
bestepid
+
'&bsmBusiness='
+
'&viewtype=1'
);
window
.
open
(
href
,
'_blank'
);
}
}
...
...
Please
register
or
sign in
to post a comment