diff --git a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/applicationShow/testApplication.vue b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/applicationShow/testApplication.vue
index a2ff6a7d..ea86c913 100755
--- a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/applicationShow/testApplication.vue
+++ b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/applicationShow/testApplication.vue
@@ -78,6 +78,11 @@
+
+
+ {{ parseBillStatus(scope.row.billStatus ?? scope.row.status) }}
+
+
{{ parsePriorityCode(scope.row.descJson) }}
@@ -261,6 +266,23 @@ const labelMap = {
attention: '注意事项',
};
+/**
+ * 解析单据状态
+ * @param {string|number} status - 状态码
+ * @returns {string} 状态文本
+ */
+const parseBillStatus = (status) => {
+ const statusMap = {
+ '0': '待签发',
+ '1': '已签发',
+ '2': '已采集',
+ '3': '已收样',
+ '4': '报告已出',
+ '5': '已作废',
+ };
+ return statusMap[String(status)] || '-';
+};
+
/**
* 解析申请类型(优先级代码)
* @param {string} descJson - JSON字符串