13 lines
273 B
Vue
13 lines
273 B
Vue
<script setup lang="ts">
|
|
import { majorList } from '@/sql'
|
|
import XmFactorGrid from '@/components/views/XmFactorGrid.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<XmFactorGrid
|
|
title="工程专业系数明细"
|
|
storage-key="xm-major-factor-v1"
|
|
:dict="majorList"
|
|
/>
|
|
</template>
|