8b89c5e5 by 田浩浩

1111111

1 parent ebf23081
......@@ -4,7 +4,7 @@ import SERVER from './config';
// 获取不动产权证列表
export function getBdcqzList (params) {
return request({
url: SERVER.SERVERAPI + '/rest/business/workFlow/getBdcqzList',
url: SERVER.SERVERAPI + '/rest/ywbl/bdcqz/getBdcqzList',
method: 'get',
params: params
})
......@@ -12,7 +12,7 @@ export function getBdcqzList (params) {
// 获取印刷序列号
export function readYsxlh (params) {
return request({
url: SERVER.SERVERAPI + '/rest/business/workFlow/readYsxlh',
url: SERVER.SERVERAPI + '/rest/ywbl/bdcqz/readYsxlh',
method: 'get',
params: params
})
......@@ -20,7 +20,7 @@ export function readYsxlh (params) {
// 缮证
export function certificate (data) {
return request({
url: SERVER.SERVERAPI + '/rest/business/workFlow/certificate',
url: SERVER.SERVERAPI + '/rest/ywbl/bdcqz/certificate',
method: 'post',
data
})
......@@ -28,7 +28,7 @@ export function certificate (data) {
// 作废缮证信息
export function invalidCertificate (data) {
return request({
url: SERVER.SERVERAPI + '/rest/business/workFlow/invalidCertificate',
url: SERVER.SERVERAPI + '/rest/ywbl/bdcqz/invalidCertificate',
method: 'post',
data
})
......@@ -36,7 +36,7 @@ export function invalidCertificate (data) {
// 缮证列表
export function getCertificateList (data) {
return request({
url: SERVER.SERVERAPI + '/rest/business/workFlow/getCertificateList',
url: SERVER.SERVERAPI + '/rest/ywbl/bdcqz/getCertificateList',
method: 'post',
data
})
......@@ -44,7 +44,7 @@ export function getCertificateList (data) {
// 发证
export function issueCertificate (data) {
return request({
url: SERVER.SERVERAPI + '/rest/business/workFlow/issueCertificate',
url: SERVER.SERVERAPI + '/rest/ywbl/bdcqz/issueCertificate',
method: 'post',
data
})
......@@ -52,7 +52,7 @@ export function issueCertificate (data) {
// 获取受理申请下全部不动产权证
export function getSlsqBdcqzList (params) {
return request({
url: SERVER.SERVERAPI + '/rest/business/workFlow/getSlsqBdcqzList',
url: SERVER.SERVERAPI + '/rest/ywbl/bdcqz/getSlsqBdcqzList',
method: 'get',
params
})
......
......@@ -35,7 +35,7 @@
</template>
<script>
import table from "@/utils/mixin/table";
import { getCertificateList } from "@/api/fqsq.js";
import { getCertificateList } from "@/api/bdcqz.js";
import { datas } from "../javascript/fzxxdata";
export default {
mixins: [table],
......