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
ee6f7de1
authored
2023-07-14 14:16:19 +0800
by
yuanbo
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
抽取search.js,修改所有引用文件
1 parent
deb2c47b
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
69 additions
and
58 deletions
src/api/search.js
src/api/zhcx.js
src/views/zhcx/djbcx/djbcx.vue
src/views/zhcx/jdcx/jdcx.vue
src/views/zhcx/zslqcx/zslqcx.vue
src/views/zhcx/zxgcdycx/zxgcdycx.vue
src/api/search.js
0 → 100644
View file @
ee6f7de
/*
* @Description: 综合查询
* @Autor: renchao
* @LastEditTime: 2023-05-17 10:23:50
*/
import
request
from
'@/utils/request'
let
SERVER
=
window
.
config
?
window
.
config
:
JSON
.
parse
(
localStorage
.
getItem
(
'ApiUrl'
))
/**
* @description: 根据条件进行列表查询
* @param {*} data
* @author: renchao
*/
export
function
getDjbBysearch
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/zhcx/search/qlxx/getDjbBysearch'
,
method
:
'post'
,
data
:
data
})
}
/**
* @description: 进度查询列表
* @param {*} data
* @author: renchao
*/
export
function
getJdcxBysearch
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/zhcx/search/getJdcxBysearch'
,
method
:
'post'
,
data
})
}
/**
* @description: 证书领取查询
* @param {*} data
* @author: renchao
*/
export
function
getBdcqzReceiveList
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/zhcx/search/getBdcqzReceiveList'
,
method
:
'post'
,
data
})
}
/**
* @description: 在建工程抵押查询
* @param {*} data
* @author: renchao
*/
export
function
getZjgcdyList
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/zhcx/search/getZjgcdyList'
,
method
:
'post'
,
data
})
}
src/api/zhcx.js
View file @
ee6f7de
...
...
@@ -8,19 +8,6 @@ let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('Ap
/**
* @description: 根据条件进行列表查询
* @param {*} data
* @author: renchao
*/
export
function
getDjbBysearch
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/zhcx/search/qlxx/getDjbBysearch'
,
method
:
'post'
,
data
:
data
})
}
/**
* @description: 获取登记封面
* @param {*} qlbsm
* @author: renchao
...
...
@@ -192,44 +179,6 @@ export function getCfdjList (data) {
data
})
}
/**
* @description: 进度查询列表
* @param {*} data
* @author: renchao
*/
export
function
getJdcxBysearch
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/zhcx/search/getJdcxBysearch'
,
method
:
'post'
,
data
})
}
/**
* @description: 证书领取查询
* @param {*} data
* @author: renchao
*/
export
function
getBdcqzReceiveList
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/zhcx/search/getBdcqzReceiveList'
,
method
:
'post'
,
data
})
}
/**
* @description: 在建工程抵押查询
* @param {*} data
* @author: renchao
*/
export
function
getZjgcdyList
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/zhcx/search/getZjgcdyList'
,
method
:
'post'
,
data
})
}
// 数据上报推送查询
export
function
getSjsbPushList
(
data
)
{
...
...
src/views/zhcx/djbcx/djbcx.vue
View file @
ee6f7de
...
...
@@ -42,7 +42,7 @@
<el-input
placeholder=
"请输入不动产权证号"
v-model=
"queryForm.bdcqzh"
clearable
class=
"width100"
>
</el-input>
</el-form-item>
</el-col>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"5"
>
...
...
@@ -92,7 +92,7 @@
import
{
mapGetters
}
from
"vuex"
;
import
table
from
"@/utils/mixin/table"
;
import
{
datas
,
sendThis
}
from
"./djbcxdata"
;
import
{
getDjbBysearch
}
from
"@/api/
zhcx
.js"
;
import
{
getDjbBysearch
}
from
"@/api/
search
.js"
;
export
default
{
name
:
"djbcx"
,
...
...
src/views/zhcx/jdcx/jdcx.vue
View file @
ee6f7de
...
...
@@ -83,7 +83,7 @@
import
{
mapGetters
}
from
'vuex'
import
table
from
"@/utils/mixin/table"
;
import
{
datas
,
sendThis
}
from
"./jdcxdata"
;
import
{
getJdcxBysearch
}
from
"@/api/
zhcx
.js"
import
{
getJdcxBysearch
}
from
"@/api/
search
.js"
export
default
{
name
:
"jdcx"
,
components
:
{},
...
...
src/views/zhcx/zslqcx/zslqcx.vue
View file @
ee6f7de
...
...
@@ -50,8 +50,8 @@
<
script
>
import
table
from
"@/utils/mixin/table"
;
import
{
datas
,
sendThis
}
from
"./zslqcx"
;
import
{
getBdcqzReceiveList
}
from
"@/api/
zhcx
"
import
{
bdcqzPreview
}
from
"@/api/bdcqz"
import
{
getBdcqzReceiveList
}
from
"@/api/
search.js
"
import
{
bdcqzPreview
}
from
"@/api/bdcqz
.js
"
export
default
{
components
:
{},
mixins
:
[
table
],
...
...
src/views/zhcx/zxgcdycx/zxgcdycx.vue
View file @
ee6f7de
<!--
* @Description:
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-06-19 13:32:04
-->
...
...
@@ -48,7 +48,7 @@
<
script
>
import
table
from
"@/utils/mixin/table"
;
import
{
datas
,
sendThis
}
from
"./zxgcdycx"
;
import
{
getZjgcdyList
}
from
"@/api/
zhcx
"
import
{
getZjgcdyList
}
from
"@/api/
search.js
"
export
default
{
components
:
{},
mixins
:
[
table
],
...
...
Please
register
or
sign in
to post a comment