This commit is contained in:
2025-05-09 14:57:18 +08:00
parent 1a7886450d
commit 52a270d27f
15 changed files with 657 additions and 69 deletions

View File

@@ -211,6 +211,27 @@ const merchant = {
data: data
});
},
getMaterialList: async (id) => {
return request({
url: '/index/task/getMaterialList',
method: Method.POST,
data: {id}
});
},
addMaterial: async (data) => {
return request({
url: '/index/task/addMaterial',
method: Method.POST,
data: data
});
},
delMaterial: async (id) => {
return request({
url: '/index/task/delMaterial',
method: Method.POST,
data: {id}
});
},
}
export default merchant;