license管理新增重置key的操作

This commit is contained in:
aoshiguchen
2022-12-19 10:18:59 +08:00
parent 461805e652
commit cfd079279f
4 changed files with 35 additions and 5 deletions
+10
View File
@@ -51,3 +51,13 @@ export function deleteLicense(id) {
}
})
}
export function resetLicense(id) {
return request({
url: '/license/reset',
method: 'post',
params: {
id: id
}
})
}