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

23 lines
442 B
JavaScript
Raw Normal View History

2024-02-26 09:10:41 +08:00
const queryRegionListByName = (params) => {
return $axios({
2024-02-26 13:41:57 +08:00
url: '/jnquotation/regionList',
2024-02-26 09:10:41 +08:00
method: 'post',
params
})
}
const queryMaterialListByParam = (params) => {
return $axios({
2024-02-28 15:01:49 +08:00
url: '/jnquotation/materialList',
2024-02-26 09:10:41 +08:00
method: 'post',
params
})
}
const queryInventoryList = () => {
return $axios({
url: '/zmquotation/inventoryList',
method: 'post',
})
2024-02-26 13:41:57 +08:00
}