删除无用前端

This commit is contained in:
橙子
2022-04-09 00:31:23 +08:00
parent feb73174eb
commit 7aee6c4c12
123 changed files with 62 additions and 29127 deletions

View File

@@ -1,30 +0,0 @@
import myaxios from '@/util/myaxios'
export default {
getItem(url) {
return myaxios({
url: url,
method: 'get'
})
},
addItem(url, data) {
return myaxios({
url: url,
method: 'post',
data: data
})
},
updateItem(url, data) {
return myaxios({
url: url,
method: 'put',
data: data
})
},
delItemList(url, Ids) {
return myaxios({
url: url,
method: 'delete',
data: Ids
})
},
}