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
89a48c0c
authored
2020-12-18 16:18:03 +0800
by
weimo934
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
2 parents
53fe3b71
8a14a55c
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
60 additions
and
13 deletions
src/api/lpb.js
src/components/formMenu/qlxz.vue
src/views/panel/search/index.vue
src/views/zrz/lpb/bjlp/index.vue
src/views/zrz/zrzxx/index.vue
src/api/lpb.js
View file @
89a48c0
...
...
@@ -84,13 +84,14 @@ export function getLpbTj (data) {
* zrzbsm 自然幢标识码 ,
* dpdm 自然幢号 ,
*/
export
function
batchGeneratorBdcdyh
(
dpdm
,
zrzbsm
)
{
export
function
batchGeneratorBdcdyh
(
dpdm
,
zrzbsm
,
override
)
{
return
request
({
url
:
'system/generator/batchGeneratorBdcdyh'
,
method
:
'get'
,
params
:
{
zrzbsm
:
zrzbsm
,
dpdm
:
dpdm
,
override
:
override
},
})
}
...
...
src/components/formMenu/qlxz.vue
View file @
89a48c0
...
...
@@ -235,6 +235,7 @@
</
template
>
<
template
v-if=
"!hasSyqx"
>
<el-col
class=
"pr10"
:span=
"5"
:key=
"childIndex + '7'"
:class=
"childIndex > 0 ? 'childYT' : ''"
...
...
@@ -295,6 +296,7 @@
</ul>
</el-col>
<el-col
class=
"pr10"
:span=
"5"
:key=
"childIndex + '5'"
:class=
"childIndex > 0 ? 'childYT' : ''"
...
...
src/views/panel/search/index.vue
View file @
89a48c0
...
...
@@ -35,7 +35,7 @@
</el-table-column> -->
<el-table-column
label=
"操作"
align=
"center"
width=
"100"
>
<
template
slot-scope=
"scope"
>
<el-tooltip
class=
"item"
effect=
"light"
content=
"
办理
"
placement=
"top"
>
<el-tooltip
class=
"item"
effect=
"light"
content=
"
查看
"
placement=
"top"
>
<i
class=
"iconfont iconbanli iconfontEdit"
@
click=
"handleClick(scope.row)"
style=
"padding:0 10px"
></i>
</el-tooltip>
<el-tooltip
class=
"item"
effect=
"light"
content=
"定位"
placement=
"top"
>
...
...
src/views/zrz/lpb/bjlp/index.vue
View file @
89a48c0
...
...
@@ -630,16 +630,60 @@ export default {
//批量添加不动产单元号
addBdcdyh
()
{
// this.pd[0].bsm //自然幢标识码
batchGeneratorBdcdyh
(
this
.
$store
.
state
.
zrzh
,
this
.
pd
[
0
].
bsm
).
then
(
batchGeneratorBdcdyh
(
this
.
$store
.
state
.
zrzh
,
this
.
pd
[
0
].
bsm
,
0
).
then
(
(
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
$message
.
success
(
"生成完成!"
);
}
else
{
this
.
$message
.
warning
(
res
.
message
);
}
else
if
(
res
.
code
===
206
){
let
hasGenerateCount
=
res
.
result
.
hasGenerateCount
;
let
unGenerateCount
=
res
.
result
.
unGenerateCount
;
this
.
open
(
hasGenerateCount
,
unGenerateCount
);
}
}
);
},
open
(
hasGenerateCount
,
unGenerateCount
)
{
const
h
=
this
.
$createElement
;
this
.
$msgbox
({
title
:
'消息'
,
message
:
h
(
'p'
,
null
,
[
h
(
'span'
,
null
,
'未生成单元号有 '
+
unGenerateCount
+
'户,'
),
h
(
'span'
,
null
,
'已经生成单元号有 '
+
hasGenerateCount
+
'户,'
),
h
(
'span'
,
null
,
'是否覆盖全部重新生成?'
),
]),
showCancelButton
:
true
,
confirmButtonText
:
'覆盖全部生成'
,
cancelButtonText
:
'跳过已生成单元号户'
,
beforeClose
:
(
action
,
instance
,
done
)
=>
{
if
(
action
===
'confirm'
)
{
instance
.
confirmButtonLoading
=
true
;
instance
.
confirmButtonText
=
'执行中...'
;
setTimeout
(()
=>
{
done
();
setTimeout
(()
=>
{
batchGeneratorBdcdyh
(
this
.
$store
.
state
.
zrzh
,
this
.
pd
[
0
].
bsm
,
2
).
then
(
(
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
$message
.
success
(
"生成完成!"
);
}
});
instance
.
confirmButtonLoading
=
false
;
},
300
);
},
3000
);
}
else
{
batchGeneratorBdcdyh
(
this
.
$store
.
state
.
zrzh
,
this
.
pd
[
0
].
bsm
,
1
).
then
(
(
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
$message
.
success
(
"生成完成!"
);
}
});
done
();
}
}
})
},
//获取各项单元状态统计数据
getDyztBsmList
()
{
let
data
=
{
...
...
src/views/zrz/zrzxx/index.vue
View file @
89a48c0
...
...
@@ -146,12 +146,12 @@
</tr>
<tr
v-for=
"(item1,index) in form.fwytList"
:key=
"index"
>
<td
colspan=
"2"
v-if=
"index===0"
:rowspan=
"ytTitleRowspan"
id=
"ytTitle"
>
<el-button
type=
"primary"
class=
"
outAdd addMinus"
size=
"mini"
style=
"margin-right: 10
px"
@
click=
"addYtInfo"
>
+
</el-button>
<td
colspan=
"2"
v-if=
"index===0"
:rowspan=
"ytTitleRowspan"
class=
"tdright"
id=
"ytTitle"
>
<el-button
type=
"primary"
class=
"
inAdd addMinus"
size=
"mini"
style=
"margin-right: 8
px"
@
click=
"addYtInfo"
>
+
</el-button>
<span>
用途
<i
class=
"requisite"
>
*
</i></span>
</td>
<td
colspan=
"1"
style=
"min-width:120px"
>
<td
colspan=
"1"
style=
"min-width:120px"
class=
"tdright"
>
<el-button
type=
"info"
class=
"inMinus addMinus"
size=
"mini"
style=
""
@
click=
"deleteYtInfo(index)"
circle
>
-
</el-button>
规划用途
</td>
...
...
@@ -171,7 +171,7 @@
v-model=
"item1.fwytzdbsm"
></el-select-tree>
</td>
<td
colspan=
"2"
>
用途
</td>
<td
colspan=
"2"
class=
"tdright"
>
用途
</td>
<td
colspan=
"4"
>
<el-select-tree
style=
"width:100%"
ref=
"yt"
...
...
@@ -190,12 +190,12 @@
</tr>
<tr
v-for=
"(item1,index) in form.fwjgList"
:key=
"'jg'+index"
>
<td
colspan=
"2"
v-if=
"index===0"
:rowspan=
"fwjgTitleRowspan"
>
<el-button
type=
"primary"
class=
"
out
Add addMinus"
size=
"mini"
style=
"margin-right: 10px"
@
click=
"addFwjgInfo"
>
+
</el-button>
<td
colspan=
"2"
v-if=
"index===0"
:rowspan=
"fwjgTitleRowspan"
class=
"tdright"
>
<el-button
type=
"primary"
class=
"
in
Add addMinus"
size=
"mini"
style=
"margin-right: 10px"
@
click=
"addFwjgInfo"
>
+
</el-button>
<span>
房屋结构
<i
class=
"requisite"
>
*
</i></span>
</td>
<td
colspan=
"1"
>
<el-button
type=
"primary"
class=
"inMinus addMinus"
size=
"mini"
style=
"margin-right: 10
px"
@
click=
"deleteFwjgInfo(index)"
>
-
</el-button>
<td
colspan=
"1"
class=
"tdright"
>
<el-button
type=
"primary"
class=
"inMinus addMinus"
size=
"mini"
style=
"margin-right: 8
px"
@
click=
"deleteFwjgInfo(index)"
>
-
</el-button>
<span>
删除
</span>
</td>
<td
colspan=
"9"
>
...
...
Please
register
or
sign in
to post a comment