update 实现添加房屋编码
This commit is contained in:
@@ -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
|
||||
|
||||
3
Web/src/common/api/requests/business/houseCode.js
Normal file
3
Web/src/common/api/requests/business/houseCode.js
Normal file
@@ -0,0 +1,3 @@
|
||||
export default {
|
||||
houseCodeAdd: ['/houseCode/add', 'post']
|
||||
}
|
||||
@@ -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']
|
||||
}
|
||||
@@ -1,5 +1,7 @@
|
||||
import houseProjectInfo from './houseProjectInfo'
|
||||
import houseCode from './houseCode'
|
||||
|
||||
export default {
|
||||
...houseProjectInfo
|
||||
...houseProjectInfo,
|
||||
...houseCode
|
||||
}
|
||||
Reference in New Issue
Block a user