1111111
Showing
2 changed files
with
8 additions
and
8 deletions
| ... | @@ -4,7 +4,7 @@ import SERVER from './config'; | ... | @@ -4,7 +4,7 @@ import SERVER from './config'; |
| 4 | // 获取不动产权证列表 | 4 | // 获取不动产权证列表 |
| 5 | export function getBdcqzList (params) { | 5 | export function getBdcqzList (params) { |
| 6 | return request({ | 6 | return request({ |
| 7 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getBdcqzList', | 7 | url: SERVER.SERVERAPI + '/rest/ywbl/bdcqz/getBdcqzList', |
| 8 | method: 'get', | 8 | method: 'get', |
| 9 | params: params | 9 | params: params |
| 10 | }) | 10 | }) |
| ... | @@ -12,7 +12,7 @@ export function getBdcqzList (params) { | ... | @@ -12,7 +12,7 @@ export function getBdcqzList (params) { |
| 12 | // 获取印刷序列号 | 12 | // 获取印刷序列号 |
| 13 | export function readYsxlh (params) { | 13 | export function readYsxlh (params) { |
| 14 | return request({ | 14 | return request({ |
| 15 | url: SERVER.SERVERAPI + '/rest/business/workFlow/readYsxlh', | 15 | url: SERVER.SERVERAPI + '/rest/ywbl/bdcqz/readYsxlh', |
| 16 | method: 'get', | 16 | method: 'get', |
| 17 | params: params | 17 | params: params |
| 18 | }) | 18 | }) |
| ... | @@ -20,7 +20,7 @@ export function readYsxlh (params) { | ... | @@ -20,7 +20,7 @@ export function readYsxlh (params) { |
| 20 | // 缮证 | 20 | // 缮证 |
| 21 | export function certificate (data) { | 21 | export function certificate (data) { |
| 22 | return request({ | 22 | return request({ |
| 23 | url: SERVER.SERVERAPI + '/rest/business/workFlow/certificate', | 23 | url: SERVER.SERVERAPI + '/rest/ywbl/bdcqz/certificate', |
| 24 | method: 'post', | 24 | method: 'post', |
| 25 | data | 25 | data |
| 26 | }) | 26 | }) |
| ... | @@ -28,7 +28,7 @@ export function certificate (data) { | ... | @@ -28,7 +28,7 @@ export function certificate (data) { |
| 28 | // 作废缮证信息 | 28 | // 作废缮证信息 |
| 29 | export function invalidCertificate (data) { | 29 | export function invalidCertificate (data) { |
| 30 | return request({ | 30 | return request({ |
| 31 | url: SERVER.SERVERAPI + '/rest/business/workFlow/invalidCertificate', | 31 | url: SERVER.SERVERAPI + '/rest/ywbl/bdcqz/invalidCertificate', |
| 32 | method: 'post', | 32 | method: 'post', |
| 33 | data | 33 | data |
| 34 | }) | 34 | }) |
| ... | @@ -36,7 +36,7 @@ export function invalidCertificate (data) { | ... | @@ -36,7 +36,7 @@ export function invalidCertificate (data) { |
| 36 | // 缮证列表 | 36 | // 缮证列表 |
| 37 | export function getCertificateList (data) { | 37 | export function getCertificateList (data) { |
| 38 | return request({ | 38 | return request({ |
| 39 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getCertificateList', | 39 | url: SERVER.SERVERAPI + '/rest/ywbl/bdcqz/getCertificateList', |
| 40 | method: 'post', | 40 | method: 'post', |
| 41 | data | 41 | data |
| 42 | }) | 42 | }) |
| ... | @@ -44,7 +44,7 @@ export function getCertificateList (data) { | ... | @@ -44,7 +44,7 @@ export function getCertificateList (data) { |
| 44 | // 发证 | 44 | // 发证 |
| 45 | export function issueCertificate (data) { | 45 | export function issueCertificate (data) { |
| 46 | return request({ | 46 | return request({ |
| 47 | url: SERVER.SERVERAPI + '/rest/business/workFlow/issueCertificate', | 47 | url: SERVER.SERVERAPI + '/rest/ywbl/bdcqz/issueCertificate', |
| 48 | method: 'post', | 48 | method: 'post', |
| 49 | data | 49 | data |
| 50 | }) | 50 | }) |
| ... | @@ -52,7 +52,7 @@ export function issueCertificate (data) { | ... | @@ -52,7 +52,7 @@ export function issueCertificate (data) { |
| 52 | // 获取受理申请下全部不动产权证 | 52 | // 获取受理申请下全部不动产权证 |
| 53 | export function getSlsqBdcqzList (params) { | 53 | export function getSlsqBdcqzList (params) { |
| 54 | return request({ | 54 | return request({ |
| 55 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getSlsqBdcqzList', | 55 | url: SERVER.SERVERAPI + '/rest/ywbl/bdcqz/getSlsqBdcqzList', |
| 56 | method: 'get', | 56 | method: 'get', |
| 57 | params | 57 | params |
| 58 | }) | 58 | }) | ... | ... |
| ... | @@ -35,7 +35,7 @@ | ... | @@ -35,7 +35,7 @@ |
| 35 | </template> | 35 | </template> |
| 36 | <script> | 36 | <script> |
| 37 | import table from "@/utils/mixin/table"; | 37 | import table from "@/utils/mixin/table"; |
| 38 | import { getCertificateList } from "@/api/fqsq.js"; | 38 | import { getCertificateList } from "@/api/bdcqz.js"; |
| 39 | import { datas } from "../javascript/fzxxdata"; | 39 | import { datas } from "../javascript/fzxxdata"; |
| 40 | export default { | 40 | export default { |
| 41 | mixins: [table], | 41 | mixins: [table], | ... | ... |
-
Please register or sign in to post a comment