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
3ceb51de
authored
2023-04-25 17:39:16 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:待办箱
1 parent
2e226a0b
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
15 deletions
src/utils/filter.js
src/views/workflow/components/processViewer.vue
src/views/workflow/mixin/index.js
src/views/ywbl/dbx/dbx.vue
src/utils/filter.js
View file @
3ceb51d
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-04-
19 14:27:26
* @LastEditTime: 2023-04-
25 17:05:49
*/
import
store
from
'@/store'
// table 内部过滤器 由于过滤器只能在模板中使用 所以 就有了 jsx内部方法过滤器
export
default
class
filter
{
selected
(
row
)
{
if
(
row
.
djblzt
==
1
)
{
// 正在办理不能申请
return
false
//不可选择
}
else
{
return
true
//可选择
}
// if (row.sfbl == 0) { // 正在办理不能申请
// return false
// } else {
// return true //可选择
// }
return
true
}
// 业务来源
busSource
(
val
)
{
...
...
src/views/workflow/components/processViewer.vue
View file @
3ceb51d
...
...
@@ -53,10 +53,10 @@
</el-select>
<el-table
:data=
"taskCommentList"
size=
"mini"
border
header-cell-class-name=
"table-header-gray"
>
<el-table-column
label=
"序号"
header-align=
"center"
align=
"center"
type=
"index"
width=
"55px"
/>
<el-table-column
label=
"候选办理"
prop=
"candidate"
minWidth=
"150
px
"
align=
"center"
/>
<el-table-column
label=
"实际办理"
prop=
"assigneeName"
minWidth=
"1
00px
"
align=
"center"
/>
<el-table-column
label=
"处理时间"
prop=
"createTime"
width=
"1
40px
"
align=
"center"
/>
<el-table-column
label=
"办结时间"
prop=
"finishTime"
width=
"1
40px
"
align=
"center"
/>
<el-table-column
label=
"候选办理"
prop=
"candidate"
minWidth=
"150"
align=
"center"
/>
<el-table-column
label=
"实际办理"
prop=
"assigneeName"
minWidth=
"1
40
"
align=
"center"
/>
<el-table-column
label=
"处理时间"
prop=
"createTime"
width=
"1
60
"
align=
"center"
/>
<el-table-column
label=
"办结时间"
prop=
"finishTime"
width=
"1
60
"
align=
"center"
/>
<el-table-column
label=
"耗时"
prop=
"duration"
minWidth=
"100px"
align=
"center"
/>
<el-table-column
label=
"操作类型"
align=
"center"
>
</el-table-column>
...
...
@@ -190,7 +190,7 @@ export default {
this
.
bpmnViewer
=
new
BpmnViewer
({
additionalModules
:
[
// 移动整个画布
MoveCanvasModule
MoveCanvasModule
,
],
container
:
this
.
$refs
.
processCanvas
})
...
...
@@ -255,6 +255,10 @@ export default {
}
</
script
>
<
style
scoped
lang=
"scss"
>
/
deep
/
.bjs-powered-by
{
display
:
none
!important
;
}
.information-list
{
height
:
150px
;
margin-top
:
10px
;
...
...
src/views/workflow/mixin/index.js
View file @
3ceb51d
...
...
@@ -108,7 +108,7 @@ export default {
finishedSequenceFlowSet
:
result
.
finishedSequenceFlowSet
},
allCommentList
:
result
.
historyTaskList
},
'
7
0%'
,
true
)
},
'
8
0%'
,
true
)
})
break
;
case
"B2"
:
//材料分屏按钮
...
...
src/views/ywbl/dbx/dbx.vue
View file @
3ceb51d
...
...
@@ -31,14 +31,14 @@
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"
5
"
>
<el-col
:span=
"
6
"
>
<el-form-item
label=
"业务号"
>
<el-input
placeholder=
"请输入业务号"
v-model=
"queryForm.ywh"
clearable
class=
"width100"
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"
4
"
class=
"btnColRight"
>
<el-col
:span=
"
3
"
class=
"btnColRight"
>
<el-form-item>
<el-button
type=
"primary"
native-type=
"submit"
@
click=
"handleSearch"
>
查询
</el-button>
<el-button
@
click=
"moreQueryClick"
>
高级查询
</el-button>
...
...
@@ -64,7 +64,7 @@
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"
5
"
>
<el-col
:span=
"
6
"
>
<el-form-item
label=
"坐落"
>
<el-input
placeholder=
"如需要模糊查询,前后输入%"
v-model=
"queryForm.zl"
clearable
class=
"width100"
>
</el-input>
...
...
Please
register
or
sign in
to post a comment