@@ -33,8 +33,8 @@ export const getDeliveryLogTotal = (params) => {
// 网点列表
export const stationList = params => {
return axios.request({
- url: `/station/queryList`,
+ url: `/station/queryStationList`,
method: 'post',
- data: {}
+ data: params
})
}
@@ -329,7 +329,7 @@ export default {
},
// 查询网点列表
getListStation () {
- stationList().then(res => {
+ stationList({ "deviceType":"BOX"}).then(res => {
if (res.status == 200) {
this.stationList = res.data || []
console.log(this.stationList, '------------网点')