| | |
| | | |
| | | // 根据id查询所有家庭资产详细信息 |
| | | export function searchPeople(query) { |
| | | |
| | | return request({ |
| | | url: '/zPeopleSearch/all', |
| | | method: 'get', |
| | | params: query |
| | | url: '/search/universal', |
| | | method: 'post', |
| | | data: query, |
| | | headers: { |
| | | 'Content-Type': 'application/json' |
| | | } |
| | | }) |
| | | } |
| | |
| | | const response = await searchPeople(params); |
| | | console.log(response) |
| | | // 更新搜索结果和分页信息 |
| | | this.searchResult = response.data.data || []; |
| | | this.searchResult = response.data.list || []; |
| | | console.log(this.searchResult) |
| | | this.pagination.total = response.data.total || 0; |
| | | |
| | |
| | | // detail: https://cli.vuewww.bendudu.comjs.org/config/#devserver-proxy |
| | | [process.env.VUE_APP_BASE_API]: { |
| | | // target: `https://10.39.2.234:8080/`, |
| | | //target: `https://10.39.18.174:8080/`, |
| | | target: 'https://www.bendudu.com:8080/', |
| | | target: `https://10.39.18.174:8080/`, |
| | | //target: 'https://www.bendudu.com:8080/', |
| | | changeOrigin: true, |
| | | pathRewrite: { |
| | | ['^' + process.env.VUE_APP_BASE_API]: '' |