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

22 lines
441 B
JavaScript
Raw Normal View History

2024-02-26 09:10:41 +08:00
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',
})
}