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

23 lines
442 B
JavaScript

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