15 lines
355 B
Vue
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>
|