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
6fcbcc2d
authored
2023-07-12 15:28:11 +0800
by
xiaomiao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
this.loadBdcdylist
1 parent
bc239e19
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
37 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/djbworkflow/components/leftmenu/ordinaryMenu.vue
View file @
6fcbcc2
...
...
@@ -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 @
6fcbcc2
...
...
@@ -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 @
6fcbcc2
...
...
@@ -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 @
6fcbcc2
...
...
@@ -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
...
...
Please
register
or
sign in
to post a comment