-
- 重点患者提示
-
-
-
- {{ kp.ward }} {{ kp.shift }}
-
+
+
{{ $t('nursing.execution.keyPatientAlert') }}
+
+ {{ kp.ward }} {{ kp.shift }}
{{ kp.keyPatients }}
- 待办: {{ kp.pendingMatters }}
+ {{ $t('nursing.execution.pending') }}: {{ kp.pendingMatters }}
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
- {{ ['草稿','已交接','已确认'][row.status] }}
+
+ {{ [$t('nursing.execution.draft'),$t('nursing.execution.handedOff'),$t('nursing.execution.confirmed')][row.status] }}
-
+
-
- 确认
+
+ {{ $t('nursing.execution.confirm') }}
-
+
+
-
- 新增巡视
-
+ {{ $t('nursing.execution.addPatrol') }}
-
-
-
-
-
+
+
+
+
+
-
- {{ row.patencyStatus==='NORMAL'?'正常':'异常' }}
+
+ {{ row.patencyStatus==='NORMAL' ? $t('nursing.execution.normal') : $t('nursing.execution.abnormal') }}
-
-
+
+
diff --git a/healthlink-his-ui/src/views/nursingmobile/InfusionManagement.vue b/healthlink-his-ui/src/views/nursingmobile/InfusionManagement.vue
index 7b9bbfe78..aa890fdc6 100644
--- a/healthlink-his-ui/src/views/nursingmobile/InfusionManagement.vue
+++ b/healthlink-his-ui/src/views/nursingmobile/InfusionManagement.vue
@@ -3,101 +3,95 @@
-
+
- 输液速度:
+ {{ $t('nursing.mobile.infusionSpeed') }}:
{{ item.infusionRate || '-' }}
- 总量:
+ {{ $t('nursing.mobile.totalVolume') }}:
{{ item.totalVolume ? item.totalVolume + 'ml' : '-' }}
- 开始时间:
+ {{ $t('nursing.mobile.startInfusion') }}:
{{ formatTime(item.startTime) }}
- 最近巡视:
+ {{ $t('nursing.mobile.patrolRecord') }}:
{{ formatTime(item.patrolTime) }}
- 滴速:
- {{ item.dripRate }} 滴/分
+ {{ $t('nursing.mobile.dripRateLabel') }}:
+ {{ item.dripRate }} {{ $t('nursing.mobile.unitTimesPerMin') }}
- 不良反应:
+ {{ $t('nursing.mobile.adverseReaction') }}:
{{ item.adverseReaction }}
-
+
-
+
-
-
+
+
-
-
+
+
-
+
-
-
+
+
- 取消
- 确认开始
+ {{ $t('common.cancel') }}
+ {{ $t('nursing.mobile.confirmStart') }}
-
+
-
+
-
+
-
-
-
+
+
+
-
-
+
+
-
-
+
+
- 取消
- 确认记录
+ {{ $t('common.cancel') }}
+ {{ $t('nursing.mobile.confirmRecord') }}
@@ -107,8 +101,10 @@
import { ref, reactive, onMounted } from 'vue'
import { useRoute, useRouter } from 'vue-router'
import { ElMessage } from 'element-plus'
+import { useI18n } from 'vue-i18n'
import { getInfusionStatus, startInfusion, addInfusionPatrol } from './api'
+const { t } = useI18n()
const route = useRoute()
const router = useRouter()
const loading = ref(false)
@@ -123,56 +119,26 @@ const startDialogVisible = ref(false)
const patrolDialogVisible = ref(false)
const currentInfusion = ref(null)
-const startForm = reactive({
- drugName: '',
- infusionRate: '',
- totalVolume: 250,
- patrolNurseName: ''
-})
+const startForm = reactive({ drugName: '', infusionRate: '', totalVolume: 250, patrolNurseName: '' })
+const patrolForm = reactive({ dripRate: null, patencyStatus: 'NORMAL', adverseReaction: '', patrolNurseName: '' })
-const patrolForm = reactive({
- dripRate: null,
- patencyStatus: 'NORMAL',
- adverseReaction: '',
- patrolNurseName: ''
-})
-
-const goBack = () => {
- router.push('/nursingmobile/patient-list')
-}
-
-const formatTime = (time) => {
- if (!time) return '-'
- const d = new Date(time)
- return d.toLocaleString('zh-CN')
-}
-
-const getStatusType = (status) => {
- const map = { NORMAL: 'success', OCCLUDED: 'danger', PHLEBITIS: 'warning' }
- return map[status] || 'info'
-}
-
-const getStatusText = (status) => {
- const map = { NORMAL: '正常', OCCLUDED: '堵塞', PHLEBITIS: '静脉炎' }
- return map[status] || '未知'
-}
+const goBack = () => { router.push('/nursingmobile/patient-list') }
+const formatTime = (time) => { if (!time) return '-'; const d = new Date(time); return d.toLocaleString() }
+const getStatusType = (status) => ({ NORMAL: 'success', OCCLUDED: 'danger', PHLEBITIS: 'warning' })[status] || 'info'
+const getStatusText = (status) => ({
+ NORMAL: t('nursing.execution.normal'),
+ OCCLUDED: t('nursing.mobile.occluded'),
+ PHLEBITIS: t('nursing.mobile.phlebitis')
+})[status] || t('nursing.mobile.unknown')
const fetchInfusionList = async () => {
if (!patientId.value) return
loading.value = true
- try {
- const res = await getInfusionStatus(patientId.value)
- infusionList.value = res.data || []
- } finally {
- loading.value = false
- }
+ try { const res = await getInfusionStatus(patientId.value); infusionList.value = res.data || [] } finally { loading.value = false }
}
const showStartDialog = () => {
- startForm.drugName = ''
- startForm.infusionRate = ''
- startForm.totalVolume = 250
- startForm.patrolNurseName = ''
+ startForm.drugName = ''; startForm.infusionRate = ''; startForm.totalVolume = 250; startForm.patrolNurseName = ''
startDialogVisible.value = true
}
@@ -186,30 +152,20 @@ const showPatrolDialog = (item) => {
}
const handleStartInfusion = async () => {
- if (!startForm.drugName) {
- ElMessage.warning('请输入药品名称')
- return
- }
+ if (!startForm.drugName) { ElMessage.warning(t('nursing.assessment.valDrugName')); return }
submitting.value = true
try {
await startInfusion({
patientId: patientId.value ? Number(patientId.value) : null,
encounterId: encounterId.value ? Number(encounterId.value) : null,
patientName: patientName.value,
- drugName: startForm.drugName,
- infusionRate: startForm.infusionRate,
- totalVolume: startForm.totalVolume,
- patrolNurseName: startForm.patrolNurseName,
- startTime: new Date()
+ drugName: startForm.drugName, infusionRate: startForm.infusionRate,
+ totalVolume: startForm.totalVolume, patrolNurseName: startForm.patrolNurseName, startTime: new Date()
})
- ElMessage.success('输液已开始')
+ ElMessage.success(t('nursing.mobile.infusionStarted'))
startDialogVisible.value = false
fetchInfusionList()
- } catch (e) {
- ElMessage.error('操作失败')
- } finally {
- submitting.value = false
- }
+ } catch (e) { ElMessage.error(t('nursing.mobile.operationFailed')) } finally { submitting.value = false }
}
const handlePatrol = async () => {
@@ -221,100 +177,30 @@ const handlePatrol = async () => {
patientName: patientName.value,
orderId: currentInfusion.value.orderId || currentInfusion.value.id,
drugName: currentInfusion.value.drugName,
- dripRate: patrolForm.dripRate,
- patencyStatus: patrolForm.patencyStatus,
- adverseReaction: patrolForm.adverseReaction,
- patrolNurseName: patrolForm.patrolNurseName,
- patrolTime: new Date()
+ dripRate: patrolForm.dripRate, patencyStatus: patrolForm.patencyStatus,
+ adverseReaction: patrolForm.adverseReaction, patrolNurseName: patrolForm.patrolNurseName, patrolTime: new Date()
})
- ElMessage.success('巡视记录已保存')
+ ElMessage.success(t('nursing.mobile.patrolRecordSaved'))
patrolDialogVisible.value = false
fetchInfusionList()
- } catch (e) {
- ElMessage.error('记录失败')
- } finally {
- submitting.value = false
- }
+ } catch (e) { ElMessage.error(t('nursing.mobile.recordFailed')) } finally { submitting.value = false }
}
-onMounted(() => {
- fetchInfusionList()
-})
+onMounted(() => { fetchInfusionList() })
diff --git a/healthlink-his-ui/src/views/nursingmobile/NursingAssessment.vue b/healthlink-his-ui/src/views/nursingmobile/NursingAssessment.vue
index 9b94a1e51..b02ccf21c 100644
--- a/healthlink-his-ui/src/views/nursingmobile/NursingAssessment.vue
+++ b/healthlink-his-ui/src/views/nursingmobile/NursingAssessment.vue
@@ -3,16 +3,16 @@
- Braden压疮
- Morse跌倒
- NRS2002营养
+ {{ $t('nursing.mobile.bradenPressure') }}
+ {{ $t('nursing.mobile.morseFall') }}
+ {{ $t('nursing.mobile.nrs2002Nutrition') }}
@@ -26,12 +26,8 @@
{{ item.label }}
-
- {{ opt.label }} ({{ opt.value }}分)
+
+ {{ opt.label }} ({{ opt.value }}{{ $t('nursing.mobile.scoreLabel') }})
@@ -40,42 +36,40 @@
- 总分: {{ totalScore }}
+ {{ $t('nursing.mobile.totalScoreLabel') }}: {{ totalScore }}
- 风险等级:
+ {{ $t('nursing.mobile.riskLevelLabel') }}:
{{ getRiskText(currentRiskLevel) }}
-
-
+
+
- 提交评估
+ {{ $t('nursing.mobile.submitAssessmentBtn') }}
- 评估记录
+ {{ $t('nursing.mobile.assessmentRecordsLabel') }}
- 评分: {{ record.totalScore }}
+ {{ $t('nursing.mobile.scoreLabel') }}: {{ record.totalScore }}
{{ formatTime(record.assessmentTime) }}
-
+
@@ -84,8 +78,10 @@
import { ref, reactive, computed, onMounted } from 'vue'
import { useRoute, useRouter } from 'vue-router'
import { ElMessage } from 'element-plus'
+import { useI18n } from 'vue-i18n'
import { submitAssessment, getAssessmentList } from './api'
+const { t } = useI18n()
const route = useRoute()
const router = useRouter()
const submitting = ref(false)
@@ -99,297 +95,158 @@ const selectedTool = ref('BRADEN')
const detail = ref('')
const historyList = ref([])
-const bradenItems = [
- { key: 'sensory', label: '感觉感知', options: [
- { label: '完全受限', value: 1 }, { label: '严重受限', value: 2 },
- { label: '轻度受限', value: 3 }, { label: '未受损', value: 4 }
+const bradenItems = computed(() => [
+ { key: 'sensory', label: t('nursing.mobile.bradenSensory'), options: [
+ { label: t('nursing.mobile.sensoryComplete'), value: 1 }, { label: t('nursing.mobile.sensorySevere'), value: 2 },
+ { label: t('nursing.mobile.sensoryMild'), value: 3 }, { label: t('nursing.mobile.sensoryNone'), value: 4 }
]},
- { key: 'moisture', label: '潮湿程度', options: [
- { label: '持续潮湿', value: 1 }, { label: '经常潮湿', value: 2 },
- { label: '有时潮湿', value: 3 }, { label: '很少潮湿', value: 4 }
+ { key: 'moisture', label: t('nursing.mobile.bradenMoisture'), options: [
+ { label: t('nursing.mobile.moisturePersistent'), value: 1 }, { label: t('nursing.mobile.moistureFrequent'), value: 2 },
+ { label: t('nursing.mobile.moistureOccasional'), value: 3 }, { label: t('nursing.mobile.moistureRare'), value: 4 }
]},
- { key: 'activity', label: '活动能力', options: [
- { label: '卧床不起', value: 1 }, { label: '仅限于椅', value: 2 },
- { label: '偶尔步行', value: 3 }, { label: '经常步行', value: 4 }
+ { key: 'activity', label: t('nursing.mobile.bradenActivity'), options: [
+ { label: t('nursing.mobile.activityBed'), value: 1 }, { label: t('nursing.mobile.activityChair'), value: 2 },
+ { label: t('nursing.mobile.activityOccasionalWalk'), value: 3 }, { label: t('nursing.mobile.activityFrequentWalk'), value: 4 }
]},
- { key: 'mobility', label: '移动能力', options: [
- { label: '完全不动', value: 1 }, { label: '严重受限', value: 2 },
- { label: '轻度受限', value: 3 }, { label: '不受限', value: 4 }
+ { key: 'mobility', label: t('nursing.mobile.bradenMobility'), options: [
+ { label: t('nursing.mobile.mobilityNone'), value: 1 }, { label: t('nursing.mobile.mobilitySevere'), value: 2 },
+ { label: t('nursing.mobile.mobilityMild'), value: 3 }, { label: t('nursing.mobile.mobilityUnlimited'), value: 4 }
]},
- { key: 'nutrition', label: '营养摄取', options: [
- { label: '非常差', value: 1 }, { label: '可能不足', value: 2 },
- { label: '充足', value: 3 }, { label: '丰富', value: 4 }
+ { key: 'nutrition', label: t('nursing.mobile.bradenNutrition'), options: [
+ { label: t('nursing.mobile.nutritionVeryPoor'), value: 1 }, { label: t('nursing.mobile.nutritionProbablyInsufficient'), value: 2 },
+ { label: t('nursing.mobile.nutritionAdequate'), value: 3 }, { label: t('nursing.mobile.nutritionRich'), value: 4 }
]},
- { key: 'friction', label: '摩擦力和剪切力', options: [
- { label: '存在问题', value: 1 }, { label: '有潜在问题', value: 2 },
- { label: '无明显问题', value: 3 }
+ { key: 'friction', label: t('nursing.mobile.bradenFriction'), options: [
+ { label: t('nursing.mobile.frictionProblem'), value: 1 }, { label: t('nursing.mobile.frictionPotential'), value: 2 },
+ { label: t('nursing.mobile.frictionNone'), value: 3 }
]}
-]
+])
-const morseItems = [
- { key: 'fallHistory', label: '跌倒史', options: [
- { label: '无', value: 0 }, { label: '有', value: 25 }
+const morseItems = computed(() => [
+ { key: 'fallHistory', label: t('nursing.mobile.morseFallHistory'), options: [
+ { label: t('nursing.mobile.no'), value: 0 }, { label: t('nursing.mobile.yes'), value: 25 }
]},
- { key: 'diagnosis', label: '超过一个医学诊断', options: [
- { label: '无', value: 0 }, { label: '有', value: 15 }
+ { key: 'diagnosis', label: t('nursing.mobile.morseDiagnosis'), options: [
+ { label: t('nursing.mobile.no'), value: 0 }, { label: t('nursing.mobile.yes'), value: 15 }
]},
- { key: 'ambulation', label: '行走辅助', options: [
- { label: '卧床/轮椅', value: 0 }, { label: '拐杖/助行器', value: 15 },
- { label: '扶家具', value: 30 }
+ { key: 'ambulation', label: t('nursing.mobile.morseAmbulation'), options: [
+ { label: t('nursing.mobile.ambulationBedWheelchair'), value: 0 }, { label: t('nursing.mobile.ambulationCrutch'), value: 15 },
+ { label: t('nursing.mobile.ambulationFurniture'), value: 30 }
]},
- { key: 'ivTherapy', label: '静脉输液', options: [
- { label: '无', value: 0 }, { label: '有', value: 20 }
+ { key: 'ivTherapy', label: t('nursing.mobile.morseIV'), options: [
+ { label: t('nursing.mobile.no'), value: 0 }, { label: t('nursing.mobile.yes'), value: 20 }
]},
- { key: 'gait', label: '步态', options: [
- { label: '正常/卧床/轮椅', value: 0 }, { label: '虚弱', value: 10 },
- { label: '受损', value: 20 }
+ { key: 'gait', label: t('nursing.mobile.morseGait'), options: [
+ { label: t('nursing.mobile.gaitNormal'), value: 0 }, { label: t('nursing.mobile.gaitWeak'), value: 10 },
+ { label: t('nursing.mobile.gaitImpaired'), value: 20 }
]},
- { key: 'mental', label: '精神状态', options: [
- { label: '正确评估自身能力', value: 0 }, { label: '高估或忘记限制', value: 15 }
+ { key: 'mental', label: t('nursing.mobile.morseMental'), options: [
+ { label: t('nursing.mobile.mentalCorrect'), value: 0 }, { label: t('nursing.mobile.mentalOverestimate'), value: 15 }
]}
-]
+])
-const nrs2002Items = [
- { key: 'bmi', label: 'BMI(kg/m²)', options: [
- { label: '<18.5', value: 3 }, { label: '18.5-20.5', value: 1 },
- { label: '>20.5', value: 0 }
+const nrs2002Items = computed(() => [
+ { key: 'bmi', label: t('nursing.mobile.nrs2002BMI'), options: [
+ { label: '<18.5', value: 3 }, { label: '18.5-20.5', value: 1 }, { label: '>20.5', value: 0 }
]},
- { key: 'weightLoss', label: '体重下降', options: [
- { label: '>10%/月', value: 3 }, { label: '5-10%/月', value: 2 },
- { label: '2-5%/月', value: 1 }, { label: '无/1月', value: 0 }
+ { key: 'weightLoss', label: t('nursing.mobile.nrs2002WeightLoss'), options: [
+ { label: '>10%/月', value: 3 }, { label: '5-10%/月', value: 2 }, { label: '2-5%/月', value: 1 }, { label: t('nursing.mobile.no') + '/1月', value: 0 }
]},
- { key: 'intake', label: '饮食摄入', options: [
- { label: '无', value: 3 }, { label: '差', value: 2 },
- { label: '中等', value: 1 }, { label: '好', value: 0 }
+ { key: 'intake', label: t('nursing.mobile.nrs2002Intake'), options: [
+ { label: t('nursing.mobile.intakeNone'), value: 3 }, { label: t('nursing.mobile.intakePoor'), value: 2 },
+ { label: t('nursing.mobile.intakeModerate'), value: 1 }, { label: t('nursing.mobile.intakeGood'), value: 0 }
]},
- { key: 'illness', label: '疾病严重程度', options: [
- { label: '大手术/创伤', value: 3 }, { label: '骨盆骨折', value: 2 },
- { label: '慢性病急性发作', value: 1 }, { label: '无/轻度', value: 0 }
+ { key: 'illness', label: t('nursing.mobile.nrs2002Illness'), options: [
+ { label: t('nursing.mobile.illnessSurgery'), value: 3 }, { label: t('nursing.mobile.illnessFracture'), value: 2 },
+ { label: t('nursing.mobile.illnessAcute'), value: 1 }, { label: t('nursing.mobile.illnessMild'), value: 0 }
]}
-]
+])
-const toolConfigs = {
- BRADEN: { title: 'Braden压疮风险评估', items: bradenItems },
- MORSE: { title: 'Morse跌倒风险评估', items: morseItems },
- NRS2002: { title: 'NRS2002营养风险筛查', items: nrs2002Items }
-}
+const toolConfigs = computed(() => ({
+ BRADEN: { title: 'Braden ' + t('nursing.mobile.bradenPressure'), items: bradenItems.value },
+ MORSE: { title: 'Morse ' + t('nursing.mobile.morseFall'), items: morseItems.value },
+ NRS2002: { title: 'NRS2002 ' + t('nursing.mobile.nrs2002Nutrition'), items: nrs2002Items.value }
+}))
const itemScores = reactive({})
-
-const toolConfig = computed(() => toolConfigs[selectedTool.value])
+const toolConfig = computed(() => toolConfigs.value[selectedTool.value])
const totalScore = computed(() => {
let sum = 0
- for (const item of toolConfig.value.items) {
- sum += itemScores[item.key] || 0
- }
+ for (const item of toolConfig.value.items) { sum += itemScores[item.key] || 0 }
return sum
})
const currentRiskLevel = computed(() => {
- const tool = selectedTool.value
- const score = totalScore.value
- if (tool === 'BRADEN') {
- if (score <= 12) return 'HIGH'
- if (score <= 14) return 'MEDIUM'
- return 'LOW'
- } else if (tool === 'MORSE') {
- if (score >= 45) return 'HIGH'
- if (score >= 25) return 'MEDIUM'
- return 'LOW'
- } else if (tool === 'NRS2002') {
- if (score >= 3) return 'HIGH'
- return 'LOW'
- }
+ const tool = selectedTool.value; const score = totalScore.value
+ if (tool === 'BRADEN') { if (score <= 12) return 'HIGH'; if (score <= 14) return 'MEDIUM'; return 'LOW' }
+ else if (tool === 'MORSE') { if (score >= 45) return 'HIGH'; if (score >= 25) return 'MEDIUM'; return 'LOW' }
+ else if (tool === 'NRS2002') { if (score >= 3) return 'HIGH'; return 'LOW' }
return 'NORMAL'
})
-const onToolChange = () => {
- for (const key of Object.keys(itemScores)) {
- delete itemScores[key]
- }
-}
+const onToolChange = () => { for (const key of Object.keys(itemScores)) { delete itemScores[key] } }
-const getRiskType = (level) => {
- const map = { HIGH: 'danger', MEDIUM: 'warning', LOW: 'success', NORMAL: 'info' }
- return map[level] || 'info'
-}
+const getRiskType = (level) => ({ HIGH: 'danger', MEDIUM: 'warning', LOW: 'success', NORMAL: 'info' })[level] || 'info'
+const getRiskText = (level) => ({
+ HIGH: t('nursing.mobile.highRisk'), MEDIUM: t('nursing.mobile.mediumRisk'),
+ LOW: t('nursing.mobile.lowRisk'), NORMAL: t('nursing.mobile.normal')
+})[level] || t('nursing.mobile.unknown')
-const getRiskText = (level) => {
- const map = { HIGH: '高风险', MEDIUM: '中风险', LOW: '低风险', NORMAL: '正常' }
- return map[level] || '未知'
-}
+const getToolName = (tool) => ({
+ BRADEN: t('nursing.mobile.bradenPressure'), MORSE: t('nursing.mobile.morseFall'), NRS2002: t('nursing.mobile.nrs2002Nutrition')
+})[tool] || tool
-const getToolName = (tool) => {
- const map = { BRADEN: 'Braden压疮', MORSE: 'Morse跌倒', NRS2002: 'NRS2002营养' }
- return map[tool] || tool
-}
-
-const formatTime = (time) => {
- if (!time) return '-'
- const d = new Date(time)
- return d.toLocaleString('zh-CN')
-}
-
-const goBack = () => {
- router.push('/nursingmobile/patient-list')
-}
+const formatTime = (time) => { if (!time) return '-'; const d = new Date(time); return d.toLocaleString() }
+const goBack = () => { router.push('/nursingmobile/patient-list') }
const fetchHistory = async () => {
if (!patientId.value) return
historyLoading.value = true
- try {
- const res = await getAssessmentList(patientId.value)
- historyList.value = (res.data || []).slice(0, 20)
- } finally {
- historyLoading.value = false
- }
+ try { const res = await getAssessmentList(patientId.value); historyList.value = (res.data || []).slice(0, 20) } finally { historyLoading.value = false }
}
const handleSubmit = async () => {
const filled = toolConfig.value.items.filter(i => itemScores[i.key] != null)
- if (filled.length < toolConfig.value.items.length) {
- ElMessage.warning('请完成所有评估项目')
- return
- }
+ if (filled.length < toolConfig.value.items.length) { ElMessage.warning(t('nursing.mobile.completeAssessment')); return }
submitting.value = true
try {
await submitAssessment({
patientId: patientId.value ? Number(patientId.value) : null,
encounterId: encounterId.value ? Number(encounterId.value) : null,
- patientName: patientName.value,
- assessmentType: 'MOBILE',
- assessmentTool: selectedTool.value,
- totalScore: totalScore.value,
- itemScores: { ...itemScores },
- detail: detail.value,
- assessmentTime: new Date()
+ patientName: patientName.value, assessmentType: 'MOBILE',
+ assessmentTool: selectedTool.value, totalScore: totalScore.value,
+ itemScores: { ...itemScores }, detail: detail.value, assessmentTime: new Date()
})
- ElMessage.success('评估提交成功')
+ ElMessage.success(t('nursing.mobile.assessmentSubmitSuccess'))
detail.value = ''
fetchHistory()
- } catch (e) {
- ElMessage.error('提交失败')
- } finally {
- submitting.value = false
- }
+ } catch (e) { ElMessage.error(t('nursing.mobile.assessmentSubmitFailed')) } finally { submitting.value = false }
}
-onMounted(() => {
- fetchHistory()
-})
+onMounted(() => { fetchHistory() })
diff --git a/healthlink-his-ui/src/views/nursingmobile/OrderList.vue b/healthlink-his-ui/src/views/nursingmobile/OrderList.vue
index 39fe50cca..a8ef599b6 100644
--- a/healthlink-his-ui/src/views/nursingmobile/OrderList.vue
+++ b/healthlink-his-ui/src/views/nursingmobile/OrderList.vue
@@ -10,69 +10,56 @@