修改问诊类型判断

This commit is contained in:
2023-08-24 15:36:46 +08:00
parent 6562fee46e
commit 20cd849f71
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -170,6 +170,8 @@ function inquiryTypeToString(int|string $inquiry_type): string
$result = "公益问诊";
} elseif ($inquiry_type == 4) {
$result = "问诊购药";
} elseif ($inquiry_type == 5) {
$result = "检测问诊";
} else {
$result = "未知";
}