餐饮油烟智能监测与监管一体化平台
riku
2026-03-03 adc9e790a5b1e38f75d39df0b596b1982de4e89e
1
2
3
4
5
6
7
8
9
10
11
12
13
<template>
  <BaseOption
    optionType="checkbox"
    label="数据产品类型"
    :options="options"
  ></BaseOption>
</template>
<script setup>
import BaseOption from './base/BaseOption.vue';
import { enumProduct } from '@/enum/dataProduct';
 
const options = enumProduct();
</script>