Merge branch 'dev' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web into dev
Showing
2 changed files
with
23 additions
and
11 deletions
... | @@ -111,6 +111,18 @@ export function selectZdjbxx (data) { | ... | @@ -111,6 +111,18 @@ export function selectZdjbxx (data) { |
111 | }) | 111 | }) |
112 | } | 112 | } |
113 | 113 | ||
114 | /** | ||
115 | * @description: 业务办理-选择单元-查询宗地基本信息 | ||
116 | * @param {*} data | ||
117 | * @author: renchao | ||
118 | */ | ||
119 | export function selectHQjdc (data) { | ||
120 | return request({ | ||
121 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectHQjdc', | ||
122 | method: 'post', | ||
123 | data | ||
124 | }) | ||
125 | } | ||
114 | /* | 126 | /* |
115 | 业务办理-选择单元-查询宗地基本信息 | 127 | 业务办理-选择单元-查询宗地基本信息 |
116 | */ | 128 | */ | ... | ... |
... | @@ -71,7 +71,7 @@ | ... | @@ -71,7 +71,7 @@ |
71 | import { ywPopupDialog } from "@/utils/popup.js"; | 71 | import { ywPopupDialog } from "@/utils/popup.js"; |
72 | import { datas, sendThis } from "../javascript/selectH.js"; | 72 | import { datas, sendThis } from "../javascript/selectH.js"; |
73 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 73 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
74 | // import { selectHQjdc } from "@/api/ywsq.js"; | 74 | import { selectHQjdc } from "@/api/ywsq.js"; |
75 | import { startBusinessFlow, againAddSldy } from "@/api/workFlow.js"; | 75 | import { startBusinessFlow, againAddSldy } from "@/api/workFlow.js"; |
76 | export default { | 76 | export default { |
77 | mixins: [ywsqTable, jump], | 77 | mixins: [ywsqTable, jump], |
... | @@ -123,16 +123,16 @@ | ... | @@ -123,16 +123,16 @@ |
123 | * @author: renchao | 123 | * @author: renchao |
124 | */ | 124 | */ |
125 | queryClick () { | 125 | queryClick () { |
126 | // this.$startLoading(); | 126 | this.$startLoading(); |
127 | // this.queryForm.sqywbm = this.sqywInfo.djywbm; | 127 | this.queryForm.sqywbm = this.sqywInfo.djywbm; |
128 | // selectHQjdc({ ...this.queryForm, ...this.pageData }).then((res) => { | 128 | selectHQjdc({ ...this.queryForm, ...this.pageData }).then((res) => { |
129 | // this.$endLoading(); | 129 | this.$endLoading(); |
130 | // if (res.code === 200) { | 130 | if (res.code === 200) { |
131 | // let { total, records } = res.result; | 131 | let { total, records } = res.result; |
132 | // this.tableData.total = total; | 132 | this.tableData.total = total; |
133 | // this.tableData.data = records; | 133 | this.tableData.data = records; |
134 | // } | 134 | } |
135 | // }); | 135 | }); |
136 | }, | 136 | }, |
137 | /** | 137 | /** |
138 | * @description: submitForm | 138 | * @description: submitForm | ... | ... |
-
Please register or sign in to post a comment