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

15 lines
309 B
JavaScript
Raw Normal View History

2024-02-19 14:38:00 +08:00
const queryRegionListByName = (params) => {
return $axios({
url: '/zmquotation/regionList',
method: 'post',
params
})
2024-02-21 16:55:04 +08:00
}
const queryMaterialListByParam = (params) => {
return $axios({
url: '/zmquotation/materialList',
method: 'post',
params
})
2024-02-19 14:38:00 +08:00
}