|  |  |  | 
|---|
|  |  |  | <ProFormItemV2 label="数据可见范围" prop="dataRange"> | 
|---|
|  |  |  | <ProFormRadio | 
|---|
|  |  |  | v-model="form.dataRange" | 
|---|
|  |  |  | :value-enum="DataRangeEnumText" | 
|---|
|  |  |  | :value-enum="EnumRoleWebApiDataPowerTextForFilter" | 
|---|
|  |  |  | :buttonStyle="false" | 
|---|
|  |  |  | ></ProFormRadio> | 
|---|
|  |  |  | </ProFormItemV2> | 
|---|
|  |  |  | 
|---|
|  |  |  | ProFormRadio, | 
|---|
|  |  |  | ProFormTextArea, | 
|---|
|  |  |  | } from '@bole-core/components'; | 
|---|
|  |  |  | import { DataRangeEnumText, DataRangeEnum } from '@/constants'; | 
|---|
|  |  |  | import { EnumRoleWebApiDataPowerTextForFilter } from '@/constants'; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | defineOptions({ | 
|---|
|  |  |  | name: 'AddOrEditRoleDialog', | 
|---|
|  |  |  | 
|---|
|  |  |  | title?: string; | 
|---|
|  |  |  | name: string; | 
|---|
|  |  |  | remark: string; | 
|---|
|  |  |  | dataRange: DataRangeEnum; | 
|---|
|  |  |  | dataRange: EnumRoleWebApiDataPower; | 
|---|
|  |  |  | }; | 
|---|
|  |  |  | }; | 
|---|
|  |  |  |  | 
|---|