1
Showing
7 changed files
with
14 additions
and
14 deletions
| ... | @@ -120,7 +120,7 @@ class business { | ... | @@ -120,7 +120,7 @@ class business { | 
| 120 | 120 | ||
| 121 | 121 | ||
| 122 | // 抵押权登记 | 122 | // 抵押权登记 | 
| 123 | async getQlfQlDyaqByCondition (data) { | 123 | async getQlfQlDyaqList (data) { | 
| 124 | return request({ | 124 | return request({ | 
| 125 | url: SERVER.SERVERAPI +'/rest/reg/QlfQlDyaq/getDataPage', | 125 | url: SERVER.SERVERAPI +'/rest/reg/QlfQlDyaq/getDataPage', | 
| 126 | method: 'post', | 126 | method: 'post', | 
| ... | @@ -129,7 +129,7 @@ class business { | ... | @@ -129,7 +129,7 @@ class business { | 
| 129 | } | 129 | } | 
| 130 | 130 | ||
| 131 | // 地役权 | 131 | // 地役权 | 
| 132 | async getQlfQlDyiqByCondtion (data) { | 132 | async getQlfQlDyiqList (data) { | 
| 133 | return request({ | 133 | return request({ | 
| 134 | url: SERVER.SERVERAPI +'/rest/reg/QlfQlDyiq/getDataPage', | 134 | url: SERVER.SERVERAPI +'/rest/reg/QlfQlDyiq/getDataPage', | 
| 135 | method: 'post', | 135 | method: 'post', | ... | ... | 
| ... | @@ -260,15 +260,15 @@ export const asyncRoutes = [ | ... | @@ -260,15 +260,15 @@ export const asyncRoutes = [ | 
| 260 | meta: { title: '查封登记' } | 260 | meta: { title: '查封登记' } | 
| 261 | }, | 261 | }, | 
| 262 | { | 262 | { | 
| 263 | path: 'mortgageReg', | 263 | path: 'dyaq', | 
| 264 | component: () => import('@/views/business-info/mortgage-registration/index'), | 264 | component: () => import('@/views/business-info/dyaq/index'), | 
| 265 | name: 'mortgageReg', | 265 | name: 'dyaq', | 
| 266 | meta: { title: ' 抵押权登记' } | 266 | meta: { title: ' 抵押权登记' } | 
| 267 | }, | 267 | }, | 
| 268 | { | 268 | { | 
| 269 | path: 'easementReg', | 269 | path: 'dyiq', | 
| 270 | component: () => import('@/views/business-info/easement-registration/index'), | 270 | component: () => import('@/views/business-info/dyiq/index'), | 
| 271 | name: 'easementReg', | 271 | name: 'dyiq', | 
| 272 | meta: { title: ' 地役权登记' } | 272 | meta: { title: ' 地役权登记' } | 
| 273 | } | 273 | } | 
| 274 | ] | 274 | ] | ... | ... | 
| 1 | <template> | 1 | <template> | 
| 2 | <div class="mortgageReg from-clues"> | 2 | <div class="dyaq from-clues"> | 
| 3 | <div class="from-clues-header"> | 3 | <div class="from-clues-header"> | 
| 4 | <el-form ref="form" :model="form" label-width="80px"> | 4 | <el-form ref="form" :model="form" label-width="80px"> | 
| 5 | <el-row> | 5 | <el-row> | 
| ... | @@ -51,7 +51,7 @@ import tableMixin from '@/mixins/tableMixin.js' | ... | @@ -51,7 +51,7 @@ import tableMixin from '@/mixins/tableMixin.js' | 
| 51 | import treeSelect from '@/components/treeSelect/index.vue' | 51 | import treeSelect from '@/components/treeSelect/index.vue' | 
| 52 | import editDialog from '@/components/dataDetails/edit-dialog.vue' | 52 | import editDialog from '@/components/dataDetails/edit-dialog.vue' | 
| 53 | export default { | 53 | export default { | 
| 54 | name: "mortgageReg", | 54 | name: "dyaq", | 
| 55 | mixins: [tableMixin], | 55 | mixins: [tableMixin], | 
| 56 | components: { | 56 | components: { | 
| 57 | treeSelect, | 57 | treeSelect, | 
| ... | @@ -122,7 +122,7 @@ export default { | ... | @@ -122,7 +122,7 @@ export default { | 
| 122 | try { | 122 | try { | 
| 123 | this.loading = true | 123 | this.loading = true | 
| 124 | let { result: { list, total, pages: pageSize, pageNum: current } | 124 | let { result: { list, total, pages: pageSize, pageNum: current } | 
| 125 | } = await business.getQlfQlDyaqByCondition(this.form) | 125 | } = await business.getQlfQlDyaqList(this.form) | 
| 126 | this.tableData.data = list; | 126 | this.tableData.data = list; | 
| 127 | this.pageData = { | 127 | this.pageData = { | 
| 128 | pageSize, | 128 | pageSize, | ... | ... | 
File moved
| 1 | <template> | 1 | <template> | 
| 2 | <div class="easementReg from-clues"> | 2 | <div class="dyiq from-clues"> | 
| 3 | <div class="from-clues-header"> | 3 | <div class="from-clues-header"> | 
| 4 | <el-form ref="form" :model="form" label-width="80px"> | 4 | <el-form ref="form" :model="form" label-width="80px"> | 
| 5 | <el-row> | 5 | <el-row> | 
| ... | @@ -47,7 +47,7 @@ import tableMixin from '@/mixins/tableMixin.js' | ... | @@ -47,7 +47,7 @@ import tableMixin from '@/mixins/tableMixin.js' | 
| 47 | import treeSelect from '@/components/treeSelect/index.vue' | 47 | import treeSelect from '@/components/treeSelect/index.vue' | 
| 48 | import editDialog from '@/components/dataDetails/edit-dialog.vue' | 48 | import editDialog from '@/components/dataDetails/edit-dialog.vue' | 
| 49 | export default { | 49 | export default { | 
| 50 | name: "easementReg", | 50 | name: "dyiq", | 
| 51 | mixins: [tableMixin], | 51 | mixins: [tableMixin], | 
| 52 | components: { | 52 | components: { | 
| 53 | treeSelect, | 53 | treeSelect, | 
| ... | @@ -113,7 +113,7 @@ export default { | ... | @@ -113,7 +113,7 @@ export default { | 
| 113 | try { | 113 | try { | 
| 114 | this.form = Object.assign(this.form, this.formData) | 114 | this.form = Object.assign(this.form, this.formData) | 
| 115 | let { result: { list, total, pages: pageSize, pageNum: current } | 115 | let { result: { list, total, pages: pageSize, pageNum: current } | 
| 116 | } = await business.getQlfQlDyiqByCondtion(this.form) | 116 | } = await business.getQlfQlDyiqList(this.form) | 
| 117 | this.tableData.data = list | 117 | this.tableData.data = list | 
| 118 | this.pageData = { | 118 | this.pageData = { | 
| 119 | pageSize, | 119 | pageSize, | ... | ... | 
- 
Please register or sign in to post a comment