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
9d3de639
authored
2024-01-31 17:09:24 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:选择不动产单元
1 parent
ac98a186
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
10 deletions
src/views/djbworkflow/mixin/index.js
src/views/workflow/mixin/index.js
src/views/workflow/workFrame.vue
src/views/djbworkflow/mixin/index.js
View file @
9d3de63
...
...
@@ -86,10 +86,10 @@ export default {
let
that
=
this
;
switch
(
item
.
value
)
{
case
"B0"
:
//
this.openDialog()
this
.
$alert
(
'此功能正在开发'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
})
this
.
openDialog
()
//
this.$alert('此功能正在开发', '提示', {
//
confirmButtonText: '确定',
//
})
break
;
case
"B1"
:
getWorkFlowImage
(
this
.
bsmSlsq
,
this
.
bestepid
?
this
.
bestepid
:
''
).
then
(
res
=>
{
...
...
src/views/workflow/mixin/index.js
View file @
9d3de63
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2024-01-
23 09:57:51
* @LastEditTime: 2024-01-
31 16:52:43
*/
import
Vue
from
'vue'
import
{
getPrintTemplateByCode
}
from
"@/api/print"
;
...
...
@@ -81,10 +81,7 @@ export default {
let
that
=
this
;
switch
(
item
.
value
)
{
case
"B0"
:
// this.openDialog()
this
.
$alert
(
'此功能正在开发'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
})
this
.
openDialog
()
break
;
case
"B1"
:
getWorkFlowImage
(
this
.
bsmSlsq
,
this
.
bestepid
?
this
.
bestepid
:
''
).
then
(
res
=>
{
...
...
src/views/workflow/workFrame.vue
View file @
9d3de63
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2024-01-
23 10:25:51
* @LastEditTime: 2024-01-
31 16:59:27
-->
<
template
>
<div
class=
"container"
>
...
...
@@ -290,6 +290,16 @@
if
(
p
)
{
this
.
ableOperation
=
this
.
tabList
[
a
.
index
].
ableOperation
;
}
},
openDialog
()
{
let
data
=
JSON
.
parse
(
localStorage
.
getItem
(
'ywbl'
))
let
title
=
''
if
(
data
?.
sqywmc
)
{
title
=
"申请业务:"
+
data
?.
sqywmc
}
else
{
title
=
"申请业务:"
+
data
?.
djywmc
}
this
.
$popupDialog
(
title
,
"ywbl/ywsq/selectBdc"
,
{
'sqywInfo'
:
data
},
"90%"
,
true
)
}
}
}
...
...
Please
register
or
sign in
to post a comment