原材料库优化问题点0808

This commit is contained in:
DESKTOP-5DIJMF9\admin
2024-08-19 09:32:47 +08:00
parent 84a242dcdb
commit 63be654b92
65 changed files with 2046 additions and 2437 deletions

View File

@@ -621,11 +621,8 @@ export default {
this.dialogVisible = true;
},
confirmMove() {
// Here, you can add your logic to call the backend API.
// For example, using axios to make a POST request:
this.$axios.post('/api/schBaseTask/move', { })
.then(response => {
// Handle success response
console.log(response.data);
})
.catch(error => {

View File

@@ -39,6 +39,13 @@ export function getPointList(data) {
data
})
}
export function getPointsByRegionCodes(data) {
return request({
url: 'api/schBasePoint/getPointsByRegionCodes',
method: 'post',
data
})
}
export function getCBPointList(data) {
data ={ region_code: 'CB' }
return request({
@@ -48,4 +55,4 @@ export function getCBPointList(data) {
})
}
export default { add, edit, del, changeUsed, getPointList,getCBPointList }
export default { add, edit, del, changeUsed, getPointList,getCBPointList,getPointsByRegionCodes }