Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
任超
/
js.CadastralSystem
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
e83a1806
authored
2021-01-29 11:23:36 +0800
by
焦泽平
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'master' of
http://yun.pashanhoo.com:9090/renchao/CadastralSystem
2 parents
f3959d54
940fe3f2
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
6 deletions
src/components/formMenu/qlr.vue
src/components/lshs/index.vue
src/views/panel/create/index.vue
src/views/zrz/index.vue
src/views/zrz/zrzxx/index.vue
src/components/formMenu/qlr.vue
View file @
e83a180
...
...
@@ -564,12 +564,14 @@
//行双击事件
rowDbclick
(
row
){
if
(
+
this
.
qszt
==
0
)
{
this
.
dialogVisible
=
true
;
this
.
update
=
true
;
this
.
formData
=
row
;
if
(
row
.
frList
.
length
>
0
){
this
.
formData
.
fr
=
row
.
frList
[
0
];
}
}
},
// inputBlur(e){
...
...
src/components/lshs/index.vue
View file @
e83a180
<
template
>
<div
class=
"main"
>
<div
id=
"mountNode"
ref=
"containerWidth"
>
<div
v-show=
"showhide"
style=
"margin: 20px 0 0 20px;
color:red;"
>
<div
class=
"noData"
v-show=
"showhide"
style=
"
color:red;"
>
暂无变更业务,没有历史回溯数据
</div>
</div>
...
...
@@ -406,6 +406,12 @@ export default {
position
:
relative
;
float
:
left
;
/*border: 1px solid red;*/
.noData{
box-sizing
:
border-box
;
padding
:
20px
;
height
:
100%
;
width
:
100%
;
}
}
#mountNodeRight
{
...
...
src/views/panel/create/index.vue
View file @
e83a180
...
...
@@ -349,6 +349,7 @@ export default {
path
:
'/zd'
,
query
:{
source
:
2
,
bsm
:
res
.
processInstance
.
title
,
ywbsm
:
res
.
processInstance
.
businessId
,
workitemInstanceId
:
res
.
workitemInstance
.
id
}
});
...
...
@@ -422,6 +423,7 @@ export default {
path
:
'/zrz'
,
query
:{
source
:
1
,
bsm
:
res
.
processInstance
.
title
,
ywbsm
:
res
.
processInstance
.
businessId
,
workitemInstanceId
:
res
.
workitemInstance
.
id
,
auth
:
'0,1,2'
}
...
...
@@ -550,6 +552,7 @@ export default {
path
:
'/dz'
,
query
:{
source
:
1
,
bsm
:
res
.
processInstance
.
title
,
ywbsm
:
res
.
processInstance
.
businessId
,
workitemInstanceId
:
res
.
workitemInstance
.
id
,
auth
:
'0,1,2'
}
...
...
src/views/zrz/index.vue
View file @
e83a180
<
template
>
<div
ref=
"lpb"
class=
"content_box"
>
<el-tabs
v-model=
"activeName"
class=
"tabs"
@
tab-click=
"handleClick"
>
<el-tab-pane
label=
"自然幢信息"
name=
"zrzxx"
><zrzxx></zrzxx></el-tab-pane>
<el-tab-pane
label=
"业主共有"
name=
"yzgy"
><yzgy
v-if=
"yzgyLoad"
:is-disabled=
"isDisabled"
></yzgy></el-tab-pane>
...
...
@@ -8,7 +7,6 @@
<el-tab-pane
label=
"历史回溯"
name=
"lshs"
><lshs
v-if=
"lshsVisible"
:type=
"type"
:bsm=
"$route.query.bsm"
></lshs></el-tab-pane>
<el-tab-pane
label=
"附件材料"
name=
"fjcl"
><fjcl
ref=
"fjcl"
:is-disabled=
"isDisabled"
></fjcl></el-tab-pane>
</el-tabs>
</div>
</
template
>
<
script
>
...
...
@@ -70,7 +68,7 @@ export default {
};
</
script
>
<
style
scoped
lang=
"less"
>
.
content_box
{
padding
:
0
0
6px
;
.
el-tab-pane
{
overflow-y
:
scroll
;
}
</
style
>
...
...
src/views/zrz/zrzxx/index.vue
View file @
e83a180
...
...
@@ -674,6 +674,14 @@
}
vm
.
rollback
(
data
);
},
//宗地审核流程退回
thzd
(){
let
data
=
{
"targetNodeId"
:
this
.
workFlowData
.
rollbackDetails
[
0
].
id
,
"workitemInstanceId"
:
this
.
$route
.
query
.
workitemInstanceId
}
vm
.
rollback
(
data
);
},
//宗地流程终止
lczz
(){
vm
.
termProcess
(
this
.
workFlowData
.
processInstance
.
id
);
...
...
@@ -942,7 +950,7 @@
.main
{
box-sizing
:
border-box
;
padding
:
18px
;
height
:
auto
;
height
:
auto
!important
;
.iconfont{
cursor
:
pointer
;
}
...
...
Please
register
or
sign in
to post a comment