diff --git a/src/views/social/costRecord.vue b/src/views/social/costRecord.vue
index 3f8f880..f9d64f3 100644
--- a/src/views/social/costRecord.vue
+++ b/src/views/social/costRecord.vue
@@ -19,12 +19,17 @@
零售
- {{scope.row.source}}
+ {{ scope.row.source }}
+
+
+
+
+ {{ payTypeMapping[scope.row.payType as keyof typeof payTypeMapping] || '未知' }}
- ¥{{scope.row.netReceipts}}
+ ¥{{ scope.row.netReceipts }}
@@ -45,6 +50,15 @@ import {onMounted, ref} from "vue";
import {post} from "@/utils/request.ts";
import {getToday, formatDateArray, getThisMonth} from "@/utils/dateUtils.ts";
import {apiConfig} from "@/assets/config/apiConfig.ts";
+import {reconciliationResult} from "@/assets/config/constants.ts";
+
+const payTypeMapping = {
+ 1: "医保",
+ 2: "微信",
+ 3: "支付宝",
+ 4: "现金",
+ 5: "其他",
+}
const tableData = ref([])
const date = ref()