| | |
| | | <el-table-column prop="itemCategoryName" label="指标分类" header-align="center" align="center" min-width="100"/> |
| | | <el-table-column prop="itemType" label="指标类型" header-align="center" align="center" min-width="60"> |
| | | <template #default="scope"> |
| | | <dict-tag :type="DICT_TYPE.ITEM_TYPE" :value="scope.row.itemType" /> |
| | | <dict-tag :type="DICT_TYPE.IND_ITEM_TYPE" :value="scope.row.itemType" /> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="coefficient" label="系数" header-align="center" align="center" min-width="60"/> |
| | |
| | | import * as ItemApi from '@/api/data/ind/item/item' |
| | | import * as CategoryApi from "@/api/data/ind/category"; |
| | | |
| | | defineOptions({ name: 'IndDataSet' }) |
| | | defineOptions({ name: 'IndItem' }) |
| | | |
| | | const message = useMessage() // 消息弹窗 |
| | | const { t } = useI18n() // 国际化 |