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
c428efca
authored
2024-03-07 11:12:22 +0800
by
yangwei
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'dev' of
http://yun.pashanhoo.com:9090/bdc/bdcdj-web
into dev
2 parents
5b7eb8a5
b6d582b5
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
11 deletions
src/api/ywsq.js
src/views/ywbl/ywsq/components/selectH.vue
src/api/ywsq.js
View file @
c428efc
...
...
@@ -111,6 +111,18 @@ export function selectZdjbxx (data) {
})
}
/**
* @description: 业务办理-选择单元-查询宗地基本信息
* @param {*} data
* @author: renchao
*/
export
function
selectHQjdc
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/ywsq/selectHQjdc'
,
method
:
'post'
,
data
})
}
/*
业务办理-选择单元-查询宗地基本信息
*/
...
...
src/views/ywbl/ywsq/components/selectH.vue
View file @
c428efc
...
...
@@ -71,7 +71,7 @@
import
{
ywPopupDialog
}
from
"@/utils/popup.js"
;
import
{
datas
,
sendThis
}
from
"../javascript/selectH.js"
;
import
{
defaultParameters
}
from
"../javascript/publicDefaultPar.js"
;
//
import { selectHQjdc } from "@/api/ywsq.js";
import
{
selectHQjdc
}
from
"@/api/ywsq.js"
;
import
{
startBusinessFlow
,
againAddSldy
}
from
"@/api/workFlow.js"
;
export
default
{
mixins
:
[
ywsqTable
,
jump
],
...
...
@@ -123,16 +123,16 @@
* @author: renchao
*/
queryClick
()
{
//
this.$startLoading();
//
this.queryForm.sqywbm = this.sqywInfo.djywbm;
//
selectHQjdc({ ...this.queryForm, ...this.pageData }).then((res) => {
//
this.$endLoading();
//
if (res.code === 200) {
//
let { total, records } = res.result;
//
this.tableData.total = total;
//
this.tableData.data = records;
//
}
//
});
this
.
$startLoading
();
this
.
queryForm
.
sqywbm
=
this
.
sqywInfo
.
djywbm
;
selectHQjdc
({
...
this
.
queryForm
,
...
this
.
pageData
}).
then
((
res
)
=>
{
this
.
$endLoading
();
if
(
res
.
code
===
200
)
{
let
{
total
,
records
}
=
res
.
result
;
this
.
tableData
.
total
=
total
;
this
.
tableData
.
data
=
records
;
}
});
},
/**
* @description: submitForm
...
...
Please
register
or
sign in
to post a comment