20 lines
511 B
Vue
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>
|