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
d84b37be
authored
2023-07-12 15:28:13 +0800
by
xiaomiao
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
6fcbcc2d
1d62e270
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
67 additions
and
6 deletions
src/api/lpb.js
src/views/system/sqywgz/components/editDialog.vue
src/views/system/sqywgz/sqywDetail.vue
src/views/workflow/components/dialog/txdw.vue
src/views/workflow/mixin/index.js
src/api/lpb.js
View file @
d84b37b
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-07-1
1 09:51:0
7
* @LastEditTime: 2023-07-1
2 13:26:3
7
*/
import
request
from
"@/utils/request"
;
let
SERVER
=
window
.
config
...
...
@@ -71,3 +71,16 @@ export function getLpbTj(zrzbsm) {
method
:
"get"
,
});
}
/**
* @description:楼盘查询- 根据bsmSlsq查询自然幢标识码
* @param {*} data
* @author: renchao
*/
export
function
getZrzbsm
(
bsm
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
"/rest/zhcx/search/getZrzbsmList?bsmSlsq="
+
bsm
,
method
:
"post"
,
data
:
bsm
,
});
}
\ No newline at end of file
...
...
src/views/system/sqywgz/components/editDialog.vue
View file @
d84b37b
...
...
@@ -197,6 +197,7 @@ export default {
djywmc
:
''
,
enabled
:
'1'
,
flowid
:
''
,
flowparams
:
''
,
djqxcl
:
''
,
sfqydjyymb
:
'1'
,
djyy
:
''
...
...
src/views/system/sqywgz/sqywDetail.vue
View file @
d84b37b
...
...
@@ -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>
...
...
src/views/workflow/components/dialog/txdw.vue
0 → 100644
View file @
d84b37b
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-07-12 14:20:58
-->
<
template
>
<div>
图形定位
</div>
</
template
>
<
script
>
export
default
{
props
:
{
formData
:
{
type
:
Object
,
default
:
{}
}
},
data
()
{
return
{
}
},
methods
:
{
}
}
</
script
>
<
style
scoped
lang=
'scss'
>
</
style
>
\ No newline at end of file
src/views/workflow/mixin/index.js
View file @
d84b37b
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-0
6-26 17:03:07
* @LastEditTime: 2023-0
7-12 14:23:25
*/
import
{
getWorkFlowImage
}
from
"@/api/workflow/jsydsyqFlow.js"
;
import
{
getPrintTemplateByCode
}
from
"@/api/system"
;
...
...
@@ -17,6 +17,7 @@ import {
}
from
"@/api/fqsq.js"
;
import
{
mapGetters
}
from
'vuex'
import
{
log
}
from
"bpmn-js-token-simulation"
;
import
{
getZrzbsm
}
from
"@/api/lpb"
;
export
default
{
data
()
{
return
{
...
...
@@ -76,7 +77,7 @@ export default {
rejectedTaskSet
:
{},
finishedSequenceFlowSet
:
result
.
finishedSequenceFlowIds
},
handlinglist
:
result
.
runningTasks
,
handlinglist
:
result
.
runningTasks
,
allCommentList
:
result
.
finishedTasks
},
'80%'
,
true
)
})
...
...
@@ -139,9 +140,22 @@ export default {
)
break
;
case
"B8"
:
this
.
$popupDialog
(
'楼盘表'
,
'lpb/index'
,
{
bsm
:
''
},
'90%'
,
true
)
getZrzbsm
(
this
.
bsmSlsq
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
$popupDialog
(
'楼盘表'
,
'lpb/index'
,
{
bsm
:
res
.
result
[
0
]
},
'90%'
,
true
)
}
else
{
this
.
$message
.
error
(
res
.
message
)
}
})
.
catch
((
err
)
=>
{
this
.
$message
.
error
(
err
)
});
break
;
// 图形定位
case
"B-TXDW"
:
this
.
$popupDialog
(
'图形定位'
,
'workflow/components/dialog/txdw'
,
{},
'60%'
,
true
)
break
;
case
"back"
:
//退回按钮
this
.
$popupDialog
(
"退回"
,
"workflow/components/th"
,
{
...
...
Please
register
or
sign in
to post a comment