会员升级

This commit is contained in:
Paidax
2025-10-21 17:24:21 +08:00
parent 5b44c75aaf
commit 2d7a74fd87
92 changed files with 6139 additions and 5194 deletions
@@ -81,5 +81,17 @@ const businessTool = {
return ""
}
})
},
getEnumOptions(name = null) {
return commonUtil
.axiosService()
.post("/open/common/dictEnumOptions", {name})
.then((resp) => {
if (resp.code === 0) {
return resp.data
} else {
return []
}
})
}
}