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
60c4e560
authored
2023-07-14 14:58:51 +0800
by
yuanbo
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
抽取businessApply.js,修改所有引用文件
1 parent
8304ea81
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
90 additions
and
94 deletions
src/api/businessApply.js
src/api/selectQlxx.js
src/api/ywbl.js
src/views/ywbl/ywsq/guidePage.vue
src/api/businessApply.js
0 → 100644
View file @
60c4e56
/*
* @Description: 业务办理
* @Autor: renchao
* @LastEditTime: 2023-05-17 10:13:24
*/
import
request
from
'@/utils/request'
let
SERVER
=
window
.
config
?
window
.
config
:
JSON
.
parse
(
localStorage
.
getItem
(
'ApiUrl'
))
/**
* @description: 业务办理-获取收藏业务集合
* @author: renchao
*/
export
function
getCollectBiz
()
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/BusinessApply/getCollectBiz'
,
method
:
'post'
})
}
/**
* @description: 业务办理-获取左侧菜单
* @author: renchao
*/
export
function
getleftMenu
()
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/BusinessApply/getleftMenu'
,
method
:
'post'
})
}
/**
* @description: 登记簿补录
* @author: renchao
*/
export
function
getRepairBiz
()
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/BusinessApply/getRepairBiz'
,
method
:
'post'
})
}
/**
* @description: 一并申请业务
* @author: renchao
*/
export
function
getTogetherBiz
()
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/BusinessApply/getTogetherBiz'
,
method
:
'post'
})
}
/**
* @description: 业务办理-获取下个节点内容
* @param {*} bsmSqyw
* @author: renchao
*/
export
function
getNextNode
(
bsmSqyw
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/BusinessApply/getNextNode?parentid='
+
bsmSqyw
,
method
:
'post'
})
}
/**
* @description: 业务办理-业务申请-添加收藏业务
* @param {*} bsmSqyw
* @author: renchao
*/
export
function
addCollectBiz
(
bsmSqyw
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/BusinessApply/addCollectBiz?bsmSqyw='
+
bsmSqyw
,
method
:
'post'
})
}
/**
* @description: 业务办理-业务申请-取消收藏业务
* @param {*} bsmSqyw
* @author: renchao
*/
export
function
deleteCollectBiz
(
bsmSqyw
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/BusinessApply/deleteCollectBiz?bsmSqyw='
+
bsmSqyw
,
method
:
'post'
})
}
src/api/selectQlxx.js
View file @
60c4e56
...
...
@@ -43,18 +43,6 @@ export function selectCfdj (data) {
}
/**
* @description: 业务办理-业务申请-添加收藏业务
* @param {*} bsmSqyw
* @author: renchao
*/
export
function
deleteCollectBiz
(
bsmSqyw
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/BusinessApply/deleteCollectBiz?bsmSqyw='
+
bsmSqyw
,
method
:
'post'
})
}
/**
* @description: 选择补录权利信息
* @param {*} data
* @author: renchao
...
...
src/api/ywbl.js
View file @
60c4e56
...
...
@@ -8,87 +8,6 @@ import request from '@/utils/request'
let
SERVER
=
window
.
config
?
window
.
config
:
JSON
.
parse
(
localStorage
.
getItem
(
'ApiUrl'
))
/**
* @description: 业务办理-获取收藏业务集合
* @author: renchao
*/
export
function
getCollectBiz
()
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/BusinessApply/getCollectBiz'
,
method
:
'post'
})
}
/**
* @description: 业务办理-获取左侧菜单
* @author: renchao
*/
export
function
getleftMenu
()
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/BusinessApply/getleftMenu'
,
method
:
'post'
})
}
/**
* @description: 登记簿补录
* @author: renchao
*/
export
function
getRepairBiz
()
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/BusinessApply/getRepairBiz'
,
method
:
'post'
})
}
/**
* @description: 一并申请业务
* @author: renchao
*/
export
function
getTogetherBiz
()
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/BusinessApply/getTogetherBiz'
,
method
:
'post'
})
}
/**
* @description: 业务办理-获取下个节点内容
* @param {*} bsmSqyw
* @author: renchao
*/
export
function
getNextNode
(
bsmSqyw
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/BusinessApply/getNextNode?parentid='
+
bsmSqyw
,
method
:
'post'
})
}
/**
* @description: 业务办理-业务申请-添加收藏业务
* @param {*} bsmSqyw
* @author: renchao
*/
export
function
addCollectBiz
(
bsmSqyw
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/BusinessApply/addCollectBiz?bsmSqyw='
+
bsmSqyw
,
method
:
'post'
})
}
/**
* @description: 业务办理-业务申请-取消收藏业务
* @param {*} bsmSqyw
* @author: renchao
*/
export
function
deleteCollectBiz
(
bsmSqyw
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/BusinessApply/deleteCollectBiz?bsmSqyw='
+
bsmSqyw
,
method
:
'post'
})
}
/**
* @description: 业务办理-选择单元-根据条件进行列表查询-国有建设用地使用权、房屋所有权(首次登记)
* @param {*} data
* @author: renchao
...
...
src/views/ywbl/ywsq/guidePage.vue
View file @
60c4e56
...
...
@@ -91,7 +91,7 @@
</div>
</template>
<
script
>
import
{
getCollectBiz
,
getleftMenu
,
getNextNode
,
getRepairBiz
,
getTogetherBiz
,
addCollectBiz
,
deleteCollectBiz
}
from
"@/api/
ywbl
.js"
import
{
getCollectBiz
,
getleftMenu
,
getNextNode
,
getRepairBiz
,
getTogetherBiz
,
addCollectBiz
,
deleteCollectBiz
}
from
"@/api/
businessApply
.js"
export
default
{
data
()
{
return
{
...
...
Please
register
or
sign in
to post a comment