Commit 8d8ada73 by wangweidong

优化修改

parent 77d6b023
...@@ -54,6 +54,11 @@ export default { ...@@ -54,6 +54,11 @@ export default {
.post('meter/v1/contract/page_contract_review_his', data) .post('meter/v1/contract/page_contract_review_his', data)
.then(res => res), .then(res => res),
pageContractForEntrust: data =>
http
.post('meter/v1/contract/page_contract_for_entrust', data)
.then(res => res),
pageContractFile: data => pageContractFile: data =>
http.post('meter/v1/contract/page_contract_file', data).then(res => res), http.post('meter/v1/contract/page_contract_file', data).then(res => res),
......
...@@ -136,7 +136,7 @@ export default { ...@@ -136,7 +136,7 @@ export default {
// } // }
// }, // },
_page: async function() { _page: async function() {
const result = await meterContract.pageContractReviewHis(this.formObj) const result = await meterContract.pageContractForEntrust(this.formObj)
if (result) { if (result) {
this.getPage = result.records this.getPage = result.records
console.log(this.getPage) console.log(this.getPage)
......
...@@ -129,7 +129,7 @@ export default { ...@@ -129,7 +129,7 @@ export default {
this._page() this._page()
}, },
_page: async function() { _page: async function() {
const result = await meterContract.pageContractReviewHis(this.formObj) const result = await meterContract.pageContractForEntrust(this.formObj)
if (result) { if (result) {
this.getPage = result.records this.getPage = result.records
console.log(this.getPage) console.log(this.getPage)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment