1
2
3
4
5
6
7
8
9
10
11
12
13
| <template>
| <BaseOption
| optionType="select"
| label="审核状态"
| :options="options"
| ></BaseOption>
| </template>
| <script setup>
| import BaseOption from './base/BaseOption.vue';
| import { enumProdCheck } from '@/enum/dataProduct';
|
| const options = enumProdCheck(true);
| </script>
|
|