update 实现添加房屋编码

This commit is contained in:
2021-05-19 23:15:22 +08:00
parent 3aff5a4413
commit 9bd6446a76
21 changed files with 885 additions and 113 deletions

View File

@@ -78,7 +78,7 @@ for (let key in urls) {
const item = urls[key]
let url = '',
method = 'post',
method = 'get',
options = {}
if (item.constructor === String) {
url = item

View File

@@ -0,0 +1,3 @@
export default {
houseCodeAdd: ['/houseCode/add', 'post']
}

View File

@@ -4,5 +4,6 @@ export default {
houseProejctEdit: ['/houseProjectInfo/edit', 'post'],
houseProejctDelete: ['/houseProjectInfo/delete', 'post'],
houseProejctDetail: ['/houseProjectInfo/detail', 'get'],
houseProjectNextSort:['/houseProjectInfo/nextSort','get']
houseProjectNextSort: ['/houseProjectInfo/nextSort', 'get'],
houseProjectList: ['houseProjectInfo/list', 'get']
}

View File

@@ -1,5 +1,7 @@
import houseProjectInfo from './houseProjectInfo'
import houseCode from './houseCode'
export default {
...houseProjectInfo
...houseProjectInfo,
...houseCode
}