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
d1cab37e
authored
2022-12-02 15:16:30 +0800
by
田浩浩
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'master' of
http://yun.pashanhoo.com:9090/bdc/bdcdj-web
2 parents
fd9df7c7
46d5d83a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
30 deletions
src/api/lpb.js
src/api/zhcx.js
src/views/lpb/lpbContent/index.vue
src/views/zhcx/lpcx/lpcx.vue
src/api/lpb.js
0 → 100644
View file @
d1cab37
import
request
from
'@/utils/request'
import
SERVER
from
'./config'
/*
楼盘查询
*/
// 根据条件进行列表查询
export
function
getLpZrz
(
data
)
{
return
request
({
// url: SERVER.SERVERAPI + '/rest/zhcx/lpcx/getLpZrz',
url
:
'service-lpb/rest/zhcx/lpcx/getLpZrz'
,
method
:
'post'
,
data
:
data
})
}
// 获取楼盘表
export
function
getLpb
(
zrzbsm
)
{
return
request
({
url
:
'service-lpb/rest/zhcx/lpcx/getLpb?zrzbsm='
+
zrzbsm
,
method
:
'get'
})
}
src/api/zhcx.js
View file @
d1cab37
...
...
@@ -142,22 +142,3 @@ export function getJdcxBysearch (data) {
}
/*
楼盘查询
*/
// 根据条件进行列表查询
export
function
getLpZrz
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/zhcx/lpcx/getLpZrz'
,
method
:
'post'
,
data
:
data
})
}
// 获取楼盘表
export
function
getLpb
(
zrzbsm
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/zhcx/lpcx/getLpb?zrzbsm='
+
zrzbsm
,
method
:
'get'
})
}
...
...
src/views/lpb/lpbContent/index.vue
View file @
d1cab37
...
...
@@ -189,7 +189,7 @@
</div>
</
template
>
<
script
>
import
{
getLpb
}
from
'@/api/
zhcx
'
import
{
getLpb
}
from
'@/api/
lpb
'
export
default
{
name
:
""
,
components
:
{
},
...
...
src/views/zhcx/lpcx/lpcx.vue
View file @
d1cab37
...
...
@@ -50,7 +50,7 @@
<
script
>
import
table
from
"@/utils/mixin/table"
;
import
{
datas
,
sendThis
}
from
"./lpcxdata"
;
import
{
getLpZrz
,
getLpb
}
from
"@/api/zhcx
.js"
;
import
{
getLpZrz
}
from
"@/api/lpb
.js"
;
export
default
{
name
:
"lpcx"
,
components
:
{},
...
...
@@ -103,15 +103,6 @@ export default {
bsm
:
scope
.
row
.
bsm
}
})
// getLpb({ zrzbsm: zrzbsm })
// .then((res) => {
// if (res.code == 200) {
// var lpbdata = res.result;
// }
// })
// .catch((error) => {
// console.log(error);
// });
},
},
};
...
...
Please
register
or
sign in
to post a comment