update 增加了查询分析详情页的文件

This commit is contained in:
2021-07-01 11:02:18 +08:00
parent 653b5b34eb
commit 40d7bef357
14 changed files with 156 additions and 40 deletions

View File

@@ -17,7 +17,7 @@ import { message as Message, notification } from 'antd'
const STATUS = status
axios.defaults.baseURL = '/api'
axios.defaults.baseURL = process.env.NODE_ENV === 'development' ? '/api' : process.env.REACT_APP_BASE_URL
const initInstance = (options) => {
const instance = axios

View File

@@ -1,5 +1,6 @@
const urls = {
houseQueryPage: ['/houseQuery/page', 'post'],
houseQueryDetail: ['/houseQuery/detail', 'get'],
}
export default urls