JNDemo/target/classes/static/zmquotation/js/index.js

22 lines
441 B
JavaScript

const queryRegionListByName = (params) => {
return $axios({
url: '/zmquotation/regionList',
method: 'post',
params
})
}
const queryMaterialListByParam = (params) => {
return $axios({
url: '/zmquotation/materialList',
method: 'post',
params
})
}
const queryInventoryList = () => {
return $axios({
url: '/zmquotation/inventoryList',
method: 'post',
})
}