医生常用语维护->名称字数限制、前端名称唯一性校验等

This commit is contained in:
2025-12-30 14:26:14 +08:00
parent 1b2c248fa2
commit 91cb465962
2 changed files with 72 additions and 26 deletions

View File

@@ -13,11 +13,11 @@ export function getDoctorPhraseList() {
/**
* 搜索医生常用语
*/
export function searchDoctorPhraseList(phraseName, phraseType, phraseCategory) {
export function searchDoctorPhraseList(phraseName, phraseType) {
return request({
url: '/Doctor-phrase/search',
method: 'get',
params: { phraseName, phraseType, phraseCategory }
params: { phraseName, phraseType }
})
}