原材料库优化问题点0808
This commit is contained in:
@@ -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 => {
|
||||
|
||||
@@ -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 }
|
||||
|
||||
Reference in New Issue
Block a user