|
|
@@ -31,7 +31,7 @@ export const actions = {
|
|
|
// 采购商列表
|
|
|
loadPurchaseManList ({ commit }, params = {}) {
|
|
|
commit('purchaseManList/REQUEST_PURCHASEMAN')
|
|
|
- return axios.get('/inquiry/public', {params})
|
|
|
+ return axios.get('http://10.10.0.254:8080/inquiry/public', {params})
|
|
|
.then(response => {
|
|
|
let list = response.data
|
|
|
for (let i = 0; i < list.content.length; i++) {
|
|
|
@@ -48,7 +48,7 @@ export const actions = {
|
|
|
// 求购排行榜
|
|
|
loadPurchaseApplyRank ({ commit }, params = {}) {
|
|
|
commit('purchaseApplyRank/REQUEST_PURCHASERANK', params)
|
|
|
- return axios.get(`/inquiry/public/quotationList?_state=agreed&pageNumber=1&pageSize=5`)
|
|
|
+ return axios.get(`http://10.10.0.254:8080/inquiry/public/quotationList?_state=agreed&pageNumber=1&pageSize=5`)
|
|
|
.then(response => {
|
|
|
commit('purchaseApplyRank/GET_PURCHASERANK_SUCCESS', response.data)
|
|
|
}, err => {
|