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
482b1aaa
authored
2023-07-12 16:35:08 +0800
by
renchao@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
d0e27e3c
d84b37be
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
43 additions
and
26 deletions
src/views/djbworkflow/components/leftmenu/ordinaryMenu.vue
src/views/djbworkflow/mixin/index.js
src/views/djbworkflow/workFrame.vue
src/views/djbworkflow/workFrameView.vue
src/views/system/sqywgz/components/editDialog.vue
src/views/system/sqywgz/sqywDetail.vue
src/views/djbworkflow/components/leftmenu/ordinaryMenu.vue
View file @
482b1aa
...
...
@@ -33,7 +33,7 @@
<p
v-if=
"item.operate=='D'"
>
{{
item
.
qllxmc
}}
<span
class=
"tpcolor"
>
(删除)
</span></p>
<p
v-else
>
{{
item
.
qllxmc
}}
<span
class=
"tpcolor"
>
(
{{
item
.
operate
==
"U"
?
"编辑"
:
"新增"
}}
)
</span></p>
</div>
<i
class=
"el-icon-delete"
v-if=
"delel"
></i>
<i
class=
"el-icon-delete"
@
click
.
stop=
"handleDel(item)"
v-if=
"delel"
></i>
</el-menu-item>
</el-menu>
</div>
...
...
src/views/djbworkflow/mixin/index.js
View file @
482b1aa
...
...
@@ -6,6 +6,7 @@
import
{
getWorkFlowImage
}
from
"@/api/workflow/jsydsyqFlow.js"
;
import
{
getPrintTemplateByCode
}
from
"@/api/system"
;
import
{
getPrintApplicationInfo
}
from
"@/api/fqsq"
;
import
{
getQllxByBdcdyid
}
from
"@/api/djbbl.js"
;
import
{
uploadUndo
}
from
"@/api/clxx"
;
import
{
deleteFlow
}
from
"@/api/djbbl"
;
import
{
getLodop
}
from
"@/utils/LodopFuncs"
...
...
@@ -137,7 +138,17 @@ export default {
// break;
case
"B5"
:
this
.
$refs
.
Menu
.
loadBdcdylist
(
"add"
)
if
(
this
.
currentSelectProps
.
bdcdyid
)
{
getQllxByBdcdyid
({
bdcdyid
:
this
.
currentSelectProps
.
bdcdyid
}).
then
(
(
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
$refs
.
qllxlist
.
qllxlistdata
=
res
.
result
;
this
.
$refs
.
qllxlist
.
dialogVisible
=
true
;
}
}
);
}
// this.$refs.Menu.loadBdcdylist("add")
// this.$popupDialog("选择新增权力类型", "djbworkflow/djbBook/components/qllxcloseDailog", this.currentSelectProps, '50%', true)
...
...
src/views/djbworkflow/workFrame.vue
View file @
482b1aa
...
...
@@ -149,18 +149,18 @@
// this.supplementarylist = res.result;
// })
// },
getQllxByBdcdyid
()
{
if
(
this
.
currentSelectProps
.
bdcdyid
)
{
getQllxByBdcdyid
({
bdcdyid
:
this
.
currentSelectProps
.
bdcdyid
}).
then
(
(
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
$refs
.
qllxlist
.
qllxlistdata
=
res
.
result
;
this
.
$refs
.
qllxlist
.
dialogVisible
=
true
;
}
}
);
}
},
//
getQllxByBdcdyid () {
//
if (this.currentSelectProps.bdcdyid) {
//
getQllxByBdcdyid({ bdcdyid: this.currentSelectProps.bdcdyid }).then(
//
(res) => {
//
if (res.code === 200) {
//
this.$refs.qllxlist.qllxlistdata = res.result;
//
this.$refs.qllxlist.dialogVisible = true;
//
}
//
}
//
);
//
}
//
},
// 获取右侧选项卡
getCurrentSelectProps
(
val
)
{
this
.
bsmRepair
=
val
.
bsmRepair
...
...
src/views/djbworkflow/workFrameView.vue
View file @
482b1aa
...
...
@@ -155,18 +155,18 @@ export default {
// this.supplementarylist = res.result;
// })
// },
getQllxByBdcdyid
()
{
if
(
this
.
currentSelectProps
.
bdcdyid
)
{
getQllxByBdcdyid
({
bdcdyid
:
this
.
currentSelectProps
.
bdcdyid
}).
then
(
(
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
$refs
.
qllxlist
.
qllxlistdata
=
res
.
result
;
this
.
$refs
.
qllxlist
.
dialogVisible
=
true
;
}
}
);
}
},
//
getQllxByBdcdyid() {
//
if (this.currentSelectProps.bdcdyid) {
//
getQllxByBdcdyid({ bdcdyid: this.currentSelectProps.bdcdyid }).then(
//
(res) => {
//
if (res.code === 200) {
//
this.$refs.qllxlist.qllxlistdata = res.result;
//
this.$refs.qllxlist.dialogVisible = true;
//
}
//
}
//
);
//
}
//
},
// 获取右侧选项卡
getCurrentSelectProps
(
val
)
{
this
.
bsmRepair
=
val
.
bsmRepair
...
...
src/views/system/sqywgz/components/editDialog.vue
View file @
482b1aa
...
...
@@ -197,6 +197,7 @@ export default {
djywmc
:
''
,
enabled
:
'1'
,
flowid
:
''
,
flowparams
:
''
,
djqxcl
:
''
,
sfqydjyymb
:
'1'
,
djyy
:
''
...
...
src/views/system/sqywgz/sqywDetail.vue
View file @
482b1aa
...
...
@@ -50,6 +50,11 @@
<el-input
v-model=
"form.ywDetail.flowid"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"流程参数"
prop=
"flowparams"
>
<el-input
v-model=
"form.ywDetail.flowparams"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
...
...
Please
register
or
sign in
to post a comment