wupengfei
5 天以前 e3051e24d0c52ac4e29fbbc7062f97f9ebc5fa0d
packages/components/src/Card/WithdrawMoneyCard.vue
@@ -2,7 +2,7 @@
  <div class="withdraw-money-card">
    <div class="withdraw-money-card-value">
      <div class="withdraw-money-card-value-unit">¥</div>
      <div class="withdraw-money-card-value-num">{{ toThousand(props.money) }}</div>
      <div class="withdraw-money-card-value-num">{{ toThousand(props.money ?? 0) }}</div>
    </div>
    <div class="withdraw-money-card-type">{{ props.title }}</div>
  </div>
@@ -21,10 +21,6 @@
};
const props = withDefaults(defineProps<Props>(), {});
const emit = defineEmits<{
  (e: 'update:checkedId', value: string): void;
}>();
</script>
<style lang="scss">