This commit is contained in:
2025-06-11 20:56:28 +08:00
parent 5bbd60032c
commit 148e78abf9
3 changed files with 89 additions and 6 deletions

View File

@@ -484,6 +484,20 @@ const merchant = {
data: data
});
},
saveMode: async (data) => {
return request({
url: '/index/task/saveMode',
method: Method.POST,
data: data
});
},
getModeList: async (data) => {
return request({
url: '/index/task/getModeList',
method: Method.POST,
data: data
});
},
}
export default merchant;