fix: 修复#447/#453/#455申请单adviceTypes格式错误

- 修复#447手术申请:adviceTypes改为[3,6]包含诊疗和手术类型
- 修复#453检验申请:adviceTypes从字符串'3'改为数组[3]
- 修复#455检查申请:adviceTypes从字符串'3'改为数组[3]
- 修复#455输血申请:adviceTypes从字符串'3'改为数组[3]
- 统一所有申请单的adviceTypes为数组格式,确保后端正确解析
This commit is contained in:
guanyu
2026-05-01 00:07:56 +08:00
parent 97b4e396d9
commit 701f5fed82
4 changed files with 4 additions and 4 deletions

View File

@@ -115,7 +115,7 @@ const getList = () => {
pageNum: 1, pageNum: 1,
categoryCode: '28', categoryCode: '28',
organizationId: patientInfo.value.inHospitalOrgId, organizationId: patientInfo.value.inHospitalOrgId,
adviceTypes: '3', //1 药品 2耗材 3诊疗 adviceTypes: [3], //1 药品 2耗材 3诊疗
}) })
.then((res) => { .then((res) => {
if (res.code === 200) { if (res.code === 200) {

View File

@@ -116,7 +116,7 @@ const getList = () => {
pageNum: 1, pageNum: 1,
categoryCode: '22', categoryCode: '22',
organizationId: patientInfo.value.inHospitalOrgId, organizationId: patientInfo.value.inHospitalOrgId,
adviceTypes: '3', //1 药品 2耗材 3诊疗 adviceTypes: [3], //1 药品 2耗材 3诊疗
}) })
.then((res) => { .then((res) => {
if (res.code === 200) { if (res.code === 200) {

View File

@@ -116,7 +116,7 @@ const getList = () => {
pageNum: 1, pageNum: 1,
categoryCode: '23', categoryCode: '23',
organizationId: patientInfo.value.inHospitalOrgId, organizationId: patientInfo.value.inHospitalOrgId,
adviceTypes: '3', //1 药品 2耗材 3诊疗 adviceTypes: [3], //1 药品 2耗材 3诊疗
}) })
.then((res) => { .then((res) => {
if (res.code === 200) { if (res.code === 200) {

View File

@@ -116,7 +116,7 @@ const getList = () => {
pageNum: 1, pageNum: 1,
categoryCode: '24', categoryCode: '24',
organizationId: patientInfo.value.inHospitalOrgId, organizationId: patientInfo.value.inHospitalOrgId,
adviceTypes: [3], //1 药品 2耗材 3诊疗 adviceTypes: [3, 6], //1 药品 2耗材 3诊疗 6手术
}) })
.then((res) => { .then((res) => {
if (res.code === 200) { if (res.code === 200) {