From acd6c55ea7b11e06130c20bcd5ffd98c8e880a1f Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期二, 12 八月 2025 16:32:18 +0800
Subject: [PATCH] Merge branch 'master' of http://120.26.58.240:8888/r/flexJobMiniApp

---
 packages/components/src/Card/TaskPrice.vue |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/packages/components/src/Card/TaskPrice.vue b/packages/components/src/Card/TaskPrice.vue
index c2297c9..3e8d8a2 100644
--- a/packages/components/src/Card/TaskPrice.vue
+++ b/packages/components/src/Card/TaskPrice.vue
@@ -1,7 +1,7 @@
 <template>
   <div class="task-price">
     <div class="task-price-decimal">{{ value }}</div>
-    <div class="task-price-unit">鍏�/灏忔椂</div>
+    <div class="task-price-unit">{{ unit }}</div>
   </div>
 </template>
 
@@ -11,7 +11,8 @@
 });
 
 type Props = {
-  value?: number;
+  value?: number | string;
+  unit?: string;
 };
 
 const props = withDefaults(defineProps<Props>(), {});

--
Gitblit v1.9.1