Commit 01e87291fd994709fffe75f77fa810020a41c285

Authored by lxf
1 parent 87aadf8f

fix: 货源管理

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
common/api.js
... ... @@ -178,7 +178,7 @@ module.exports = (vm) => {
178 178 getDetail: params => vm.$u.http.get( freightAPI + '/freightGoodsSourceV2/getDetail', {params}),
179 179 add: data => vm.$u.http.post( freightAPI + '/freightGoodsSourceV2/add', data,{custom: {toast:true}}),
180 180 addOrder: data => vm.$u.http.post( freightAPI + '/freightGoodsSourceV2/addOrder', data,{custom: {toast:true}}),
181   - modify: data => vm.$u.http.post( freightAPI + '/freightGoodsSourceV2/modify', data),
  181 + modify: data => vm.$u.http.post( freightAPI + '/freightGoodsSourceV2/modify', data,{custom: {toast:true}}),
182 182 complete: data => vm.$u.http.post( freightAPI + '/freightGoodsSourceV2/complete', data),
183 183 cancel: data => vm.$u.http.post( freightAPI + '/freightGoodsSourceV2/cancel', data),
184 184 cancelBidding: data => vm.$u.http.post( freightAPI + '/freightGoodsSourceV2/cancelBidding', data),
... ...