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
49644b17
authored
2023-06-09 17:04:54 +0800
by
tianhaohao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'dev' of
http://yun.pashanhoo.com:9090/bdc/bdcdj-web
into dev
2 parents
14cfb545
8afd95f3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
src/views/workflow/mixin/index.js
src/views/workflow/workFrameView.vue
src/views/workflow/mixin/index.js
View file @
49644b1
...
...
@@ -45,6 +45,9 @@ export default {
var
formdata
=
new
FormData
();
formdata
.
append
(
"bsmSlsq"
,
this
.
bsmSlsq
);
formdata
.
append
(
"bestepid"
,
this
.
bestepid
);
if
(
this
.
type
)
{
formdata
.
append
(
"type"
,
"READ_ONLY"
);
}
stepExpandInfo
(
formdata
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
leftButtonList
=
res
.
result
.
button
;
...
...
src/views/workflow/workFrameView.vue
View file @
49644b1
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-0
5-24 15:50:38
* @LastEditTime: 2023-0
6-09 16:55:31
-->
<
template
>
<div
class=
"container"
>
...
...
@@ -79,6 +79,8 @@
bsmSlsq
:
this
.
$route
.
query
.
bsmSlsq
,
//当前流程所在环节
bestepid
:
this
.
$route
.
query
.
bestepid
,
// 判断类型
type
:
"READ_ONLY"
,
//设置那个表单选中
tabName
:
""
,
//表单集合
...
...
@@ -105,6 +107,7 @@
},
//申请单元点击事件
stepForm
(
index
)
{
this
.
currentSelectProps
.
type
=
"READ_ONLY"
getStepFormInfo
(
this
.
currentSelectProps
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
fresh
++
;
...
...
Please
register
or
sign in
to post a comment