calculator2026/src/components/views/HtConsultCategoryFactor.vue
2026-03-06 17:40:08 +08:00

20 lines
511 B
Vue

<script setup lang="ts">
import { serviceList } from '@/sql'
import XmFactorGrid from '@/components/common/XmFactorGrid.vue'
const props = defineProps<{
contractId: string
}>()
</script>
<template>
<XmFactorGrid
title="咨询分类系数明细"
:storage-key="`ht-consult-category-factor-v1-${props.contractId}`"
parent-storage-key="xm-consult-category-factor-v1"
:dict="serviceList"
:disable-budget-edit-when-standard-null="true"
:exclude-notshow-by-zxflxs="true"
/>
</template>