From 3673993e2eb02c052c40746412adcc088727b12c Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 06 十一月 2025 19:07:09 +0800
Subject: [PATCH] fix: s
---
packages/components/src/Card/TaskPrice.vue | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/packages/components/src/Card/TaskPrice.vue b/packages/components/src/Card/TaskPrice.vue
index 3e8d8a2..0f93364 100644
--- a/packages/components/src/Card/TaskPrice.vue
+++ b/packages/components/src/Card/TaskPrice.vue
@@ -1,11 +1,15 @@
<template>
<div class="task-price">
- <div class="task-price-decimal">{{ value }}</div>
+ <div class="task-price-decimal" v-if="billingMethod !== EnumBillingMethod.Face">
+ {{ value }}
+ </div>
<div class="task-price-unit">{{ unit }}</div>
</div>
</template>
<script setup lang="ts">
+import { EnumBillingMethod } from '@12333/constants';
+
defineOptions({
name: 'TaskPrice',
});
@@ -13,6 +17,7 @@
type Props = {
value?: number | string;
unit?: string;
+ billingMethod?: EnumBillingMethod;
};
const props = withDefaults(defineProps<Props>(), {});
--
Gitblit v1.9.1