| 1234567891011121314151617181920212223242526272829303132333435363738 |
- export const dictionaryTypeOptions = [
- {
- value: 1,
- label: '灾害防护'
- },
- {
- value: 2,
- label: '应急管理'
- },
- {
- value: 3,
- label: '交通安全'
- },
- {
- value: 4,
- label: '保卫保密'
- },
- {
- value: 5,
- label: '生产安全'
- },
- ]
- export enum DictionaryStatus {
- disabled = 0,
- enabled = 1,
- }
- export const dictionaryStatusOptions = [
- {
- value: DictionaryStatus.disabled,
- label: '禁用'
- },
- {
- value: DictionaryStatus.enabled,
- label: '启用'
- },
- ]
|