calculator2026/src/components/views/HtAdditionalWorkFee.vue
2026-03-07 11:47:07 +08:00

15 lines
355 B
Vue

<script setup lang="ts">
import { computed } from 'vue'
import HtFeeGrid from '@/components/common/HtFeeGrid.vue'
const props = defineProps<{
contractId: string
}>()
const STORAGE_KEY = computed(() => `htExtraFee-${props.contractId}-additional-work`)
</script>
<template>
<HtFeeGrid title="附加工作费" :storageKey="STORAGE_KEY" />
</template>