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
45d8a33e
authored
2022-10-18 16:01:28 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
style:权限问题的处理
2 parents
3b1ebb39
4e929a2e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
23 deletions
src/api/ywbl.js
src/views/ywbl/ywsq/components/fwsyq.vue
src/views/ywbl/ywsq/javascript/fwsyq.js
src/api/ywbl.js
View file @
45d8a33
...
...
@@ -29,7 +29,7 @@ export function getNextNode (bsmSqyw) {
}
/*
业务办理-选择单元-根据条件进行列表查询-国有建设用地使用权
业务办理-选择单元-根据条件进行列表查询-国有建设用地使用权
、房屋所有权(首次登记)
*/
export
function
selectScBdcdy
(
data
)
{
return
request
({
...
...
@@ -40,17 +40,17 @@ export function selectScBdcdy (data) {
})
}
/*
业务办理-选择单元-根据条件进行列表查询-房屋所有权
*/
export
function
selectFwsyq
(
data
)
{
return
request
({
url
:
'ywbl/ywsq/selectFwsyq'
,
method
:
'post'
,
data
,
showLoading
:
true
})
}
/
/ /
*
//
业务办理-选择单元-根据条件进行列表查询-房屋所有权
//
*/
//
export function selectFwsyq (data) {
//
return request({
//
url: 'ywbl/ywsq/selectFwsyq',
//
method: 'post',
//
data,
//
showLoading: true
//
})
//
}
// 待办箱列表查询接口
export
function
searchTaskToDo
(
data
)
{
...
...
src/views/ywbl/ywsq/components/fwsyq.vue
View file @
45d8a33
...
...
@@ -45,7 +45,7 @@ import Cookies from 'js-cookie'
import
{
datas
,
sendThis
}
from
"../javascript/fwsyq.js"
;
import
table
from
"@/utils/mixin/table"
;
import
jump
from
"@/views/ywbl/ywsq/components/mixin/jump"
;
import
{
select
Fwsyq
,
startBusinessFlow
,
choiceBdcdy
}
from
"@/api/ywbl.js"
;
import
{
select
ScBdcdy
,
startBusinessFlow
,
choiceBdcdy
}
from
"@/api/ywbl.js"
;
export
default
{
mixins
:
[
table
,
jump
],
props
:
{
...
...
@@ -79,7 +79,8 @@ export default {
},
fetchData
()
{
this
.
queryForm
.
sqywbm
=
this
.
djywbm
;
selectFwsyq
({
...
this
.
queryForm
,
...
this
.
pageData
,
fwfl
:
this
.
activeName
}).
then
((
res
)
=>
{
this
.
queryForm
.
fwfl
=
this
.
activeName
;
selectScBdcdy
({
...
this
.
queryForm
,
...
this
.
pageData
}).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
let
{
total
,
records
}
=
res
.
result
;
this
.
tableData
.
total
=
total
;
...
...
@@ -88,7 +89,7 @@ export default {
})
},
handleTabClick
()
{
this
.
pageData
.
currentPage
=
1
this
.
pageData
.
currentPage
=
1
;
this
.
fetchData
()
},
submitForm
()
{
...
...
src/views/ywbl/ywsq/javascript/fwsyq.js
View file @
45d8a33
...
...
@@ -26,10 +26,10 @@ class data extends filter {
)
}
},
{
prop
:
"status"
,
label
:
"状态"
,
},
//
{
//
prop: "status",
//
label: "状态",
//
},
{
prop
:
"qllxmc"
,
label
:
"权利类型"
,
...
...
@@ -50,10 +50,10 @@ class data extends filter {
prop
:
"zdmj"
,
label
:
"宗地面积"
,
},
{
prop
:
"qlsdfs"
,
label
:
"权利设定方式"
,
},
//
{
//
prop: "qlsdfs",
//
label: "权利设定方式",
//
},
{
prop
:
"jzwjbyt"
,
label
:
"房屋用途"
,
...
...
Please
register
or
sign in
to post a comment