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
f8ac8b4c
authored
2020-11-13 14:08:38 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'master' of
http://yun.pashanhoo.com:9090/renchao/CadastralSystem
2 parents
2fdf4543
984bb562
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
2 deletions
src/api/lpb.js
src/views/systemZRZ/lpb/bjlp/index.vue
src/api/lpb.js
View file @
f8ac8b4
...
...
@@ -54,3 +54,15 @@ export function getLpb (data) {
},
})
}
/**
* 楼盘表 批量实预测转换
* zrzbsm 自然幢标识码 ,
* scyclx 实测预测类型 0预测,1实测
*/
export
function
batchScYcChange
(
data
)
{
return
request
({
url
:
'fw/lpbbatch/batchScYcChange'
,
method
:
'post'
,
data
:
data
})
}
\ No newline at end of file
...
...
src/views/systemZRZ/lpb/bjlp/index.vue
View file @
f8ac8b4
...
...
@@ -20,7 +20,7 @@
<el-col
:span=
"16"
>
<div
class=
"fr"
>
<el-button
class=
"radioBtn"
label=
"1"
border
@
click=
"create"
>
创建楼盘
</el-button>
<el-button
class=
"radioBtn"
label=
"2"
border
>
实预测转换
</el-button>
<el-button
class=
"radioBtn"
label=
"2"
border
@
click=
"plScYcChange"
>
实预测转换
</el-button>
<el-button
class=
"radioBtn"
label=
"3"
border
@
click=
"plhVisible=true"
>
批量户
</el-button>
<el-button
class=
"radioBtn"
label=
"4"
border
@
click=
"plcVisible=true"
>
批量层
</el-button>
<el-button
class=
"radioBtn"
label=
"5"
border
@
click=
"plShVisible=true"
>
批量室号
</el-button>
...
...
@@ -137,7 +137,8 @@ import addZdy from "./zdy/index";
import
addCh
from
"./ch/index"
;
import
hbj
from
"./hbj/index"
import
lpbContent
from
"./lpbContent/index"
;
import
{
getLpbMenuTree
}
from
"../../../../api/lpb"
;
import
{
getLpbMenuTree
,
batchScYcChange
}
from
"../../../../api/lpb"
;
export
default
{
name
:
""
,
...
...
@@ -357,7 +358,19 @@ export default {
//调用楼盘表信息查询接口
getlpbData
(){
this
.
$refs
.
lpbContent
.
getLpb
(
this
.
$store
.
state
.
zrzbsm
)
},
plScYcChange
(){
let
data
=
{
zrzbsm
:
this
.
$store
.
state
.
zrzbsm
,
scyclx
:
"0"
}
batchScYcChange
(
data
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
){
this
.
$message
.
success
(
"实预测转换成功"
)
}
})
},
},
computed
:
{
},
...
...
Please
register
or
sign in
to post a comment