991c9c0b by jiaozeping@pashanhoo.com

1

1 parent e9193397
......@@ -60,26 +60,6 @@ class business {
data
})
}
// 抵押权登记
async getQlfQlDyaqByCondition (data) {
return request({
url: SERVER.SERVERAPI +'/rest/reg/QlfQlDyaq/getDataPage',
method: 'post',
data
})
}
// 查封登记信息
async getQlfQlCfdjByCondtion (data) {
return request({
url: SERVER.SERVERAPI +'/rest/reg/QlfQlCfdj/getDataPage',
method: 'post',
data
})
}
// 构(建)筑物所有权
async getQltQlGjzwsyqByCondition (data) {
return request({
......@@ -113,7 +93,7 @@ class business {
})
}
// 异议登记信息
async getQlfQlYydjByCondition (data) {
async getQlfQlYydjList (data) {
return request({
url: SERVER.SERVERAPI +'/rest/reg/QlfQlYydj/getDataPage',
method: 'post',
......@@ -121,13 +101,33 @@ class business {
})
}
// 预告登记信息
async getQlfQlYgdjByCondition (data) {
async getQlfQlYgdjList (data) {
return request({
url: SERVER.SERVERAPI +'/rest/reg/QlfQlYgdj/getDataPage',
method: 'post',
data
})
}
// 查封登记信息
async getQlfQlCfdjList (data) {
return request({
url: SERVER.SERVERAPI +'/rest/reg/QlfQlCfdj/getDataPage',
method: 'post',
data
})
}
// 抵押权登记
async getQlfQlDyaqByCondition (data) {
return request({
url: SERVER.SERVERAPI +'/rest/reg/QlfQlDyaq/getDataPage',
method: 'post',
data
})
}
// 地役权
async getQlfQlDyiqByCondtion (data) {
return request({
......
......@@ -215,49 +215,49 @@ export const asyncRoutes = [
path: 'seaArea',
component: () => import('@/views/business-info/sea-area/index'),
name: 'seaArea',
meta: { title: ' 海域(含无居民海岛)使用权' }
meta: { title: '海域(含无居民海岛)使用权' }
},
{
path: 'buildingOwnership',
component: () => import('@/views/business-info/building-ownership/index'),
name: 'buildingOwnership',
meta: { title: ' 构(建)筑物所有权' }
meta: { title: '构(建)筑物所有权' }
},
{
path: 'agriculturalLand',
component: () => import('@/views/business-info/agricultural-land/index'),
name: 'agriculturalLand',
meta: { title: ' 农用地使用权(非林地)' }
meta: { title: '农用地使用权(非林地)' }
},
{
path: 'forestOwnership',
component: () => import('@/views/business-info/forest-ownership/index'),
name: 'forestOwnership',
meta: { title: ' 林权' }
meta: { title: '林权' }
},
{
path: 'cancellationReg',
component: () => import('@/views/business-info/cancellation-registration/index'),
name: 'cancellationReg',
meta: { title: ' 注销登记' }
meta: { title: '注销登记' }
},
{
path: 'objectionReg',
component: () => import('@/views/business-info/objection-registration/index'),
name: 'objectionReg',
meta: { title: ' 异议登记' }
path: 'yydj',
component: () => import('@/views/business-info/yydj/index'),
name: 'yydj',
meta: { title: '异议登记' }
},
{
path: 'noticeReg',
component: () => import('@/views/business-info/notice-registration/index'),
name: 'noticeReg',
meta: { title: ' 预告登记' }
path: 'ygdj',
component: () => import('@/views/business-info/ygdj/index'),
name: 'ygdj',
meta: { title: '预告登记' }
},
{
path: 'seizureReg',
component: () => import('@/views/business-info/seizure-registration/index'),
name: 'seizureReg',
meta: { title: ' 查封登记' }
path: 'Cfdj',
component: () => import('@/views/business-info/Cfdj/index'),
name: 'Cfdj',
meta: { title: '查封登记' }
},
{
path: 'mortgageReg',
......
......@@ -7,21 +7,21 @@ class data extends filter {
return [
{
label: "业务号",
prop: "YWH",
prop: "ywh",
width: 150
},
{
label: "不动产单元号",
prop: "BDCDYH"
prop: "bdcdyh"
},
{
label: "查封文号",
prop: "CFWH",
prop: "cfwh",
width: 150
},
{
label: "查封机关",
prop: "CFJG"
prop: "cfjg"
},
{
label: "查封开始时间",
......
<template>
<div class="seizureReg from-clues">
<div class="Cfdj from-clues">
<div class="from-clues-header">
<el-form ref="form" :model="form" label-width="80px">
<el-row>
......@@ -55,7 +55,7 @@ import dataReporting from '@/api/dataReporting'
import tableMixin from '@/mixins/tableMixin.js'
import editDialog from '@/components/dataDetails/edit-dialog.vue'
export default {
name: "seizureReg",
name: "Cfdj",
mixins: [tableMixin],
components: {
editDialog
......@@ -124,7 +124,7 @@ export default {
async featchData () {
try {
let { result: { list, total, pages: pageSize, pageNum: current }
} = await business.getQlfQlCfdjByCondtion(this.form)
} = await business.getQlfQlCfdjList(this.form)
this.tableData.data = list
this.pageData = {
pageSize,
......
<template>
<div class="noticeReg from-clues">
<div class="ygdj from-clues">
<div class="from-clues-header">
<el-form ref="form" :model="form" label-width="80px">
<el-row>
<el-col :span="5">
<el-form-item label="业务号">
<el-form-item label="业务号6">
<el-input v-model="form.YWH" placeholder="业务号"></el-input>
</el-form-item>
</el-col>
......@@ -60,7 +60,7 @@ import tableMixin from '@/mixins/tableMixin.js'
import treeSelect from '@/components/treeSelect/index.vue'
import editDialog from '@/components/dataDetails/edit-dialog.vue'
export default {
name: "noticeReg",
name: "ygdj",
mixins: [tableMixin],
components: {
treeSelect,
......@@ -147,9 +147,8 @@ export default {
},
async featchData () {
try {
this.form = Object.assign(this.form, this.formData)
let { result: { list, total, pages: pageSize, pageNum: current }
} = await business.getQlfQlYgdjByCondition(this.form)
} = await business.getQlfQlYgdjList(this.form)
this.tableData.data = list
this.pageData = {
pageSize,
......
......@@ -7,20 +7,20 @@ class data extends filter {
return [
{
label: "业务号",
prop: "YWH",
prop: "ywh",
width: 150
},
{
label: "不动产单元号",
prop: "BDCDYH"
prop: "bdcdyh"
},
{
label: "异议事项",
prop: "YYSX"
prop: "yysx"
},
{
label: "不动产登记证明号",
prop: "BDCDJZMH"
prop: "bdcdjzmh"
},
{
label: "登记时间",
......
<template>
<div class="objectionReg from-clues">
<div class="yydj from-clues">
<div class="from-clues-header">
<el-form ref="form" :model="form" label-width="80px">
<el-row>
......@@ -60,7 +60,7 @@ import tableMixin from '@/mixins/tableMixin.js'
import treeSelect from '@/components/treeSelect/index.vue'
import editDialog from '@/components/dataDetails/edit-dialog.vue'
export default {
name: "objectionReg",
name: "yydj",
mixins: [tableMixin],
components: {
treeSelect,
......@@ -132,7 +132,7 @@ export default {
try {
this.form = Object.assign(this.form, this.formData)
let { result: { list, total, pages: pageSize, pageNum: current }
} = await business.getQlfQlYydjByCondition(this.form)
} = await business.getQlfQlYydjList(this.form)
this.tableData.data = list
this.pageData = {
pageSize,
......