11 changed files with 73 additions and 0 deletions
@ -0,0 +1,15 @@ |
|||||
|
<script lang="ts" setup> |
||||
|
import { Page } from '@vben/common-ui'; |
||||
|
|
||||
|
import { SettingDefinitionTable } from '@abp/settings'; |
||||
|
|
||||
|
defineOptions({ |
||||
|
name: 'SettingDefinitions', |
||||
|
}); |
||||
|
</script> |
||||
|
|
||||
|
<template> |
||||
|
<Page> |
||||
|
<SettingDefinitionTable /> |
||||
|
</Page> |
||||
|
</template> |
||||
@ -0,0 +1,7 @@ |
|||||
|
<script setup lang="ts"></script> |
||||
|
|
||||
|
<template> |
||||
|
<div></div> |
||||
|
</template> |
||||
|
|
||||
|
<style scoped></style> |
||||
@ -0,0 +1,7 @@ |
|||||
|
<script setup lang="ts"></script> |
||||
|
|
||||
|
<template> |
||||
|
<div></div> |
||||
|
</template> |
||||
|
|
||||
|
<style scoped></style> |
||||
@ -0,0 +1 @@ |
|||||
|
export { default as SettingDefinitionTable } from './definitions/SettingDefinitionTable.vue'; |
||||
@ -0,0 +1 @@ |
|||||
|
export * from './permissions'; |
||||
@ -0,0 +1,10 @@ |
|||||
|
/** 设置定义权限 */ |
||||
|
export const SettingDefinitionsPermissions = { |
||||
|
/** 新增 */ |
||||
|
Create: 'SettingManagement.Definition.Create', |
||||
|
Default: 'SettingManagement.Definition', |
||||
|
/** 还原或删除 */ |
||||
|
DeleteOrRestore: 'SettingManagement.Definition.DeleteOrRestore', |
||||
|
/** 更新 */ |
||||
|
Update: 'SettingManagement.Definition.Update', |
||||
|
}; |
||||
@ -1,2 +1,3 @@ |
|||||
export * from './api'; |
export * from './api'; |
||||
|
export * from './components'; |
||||
export * from './types'; |
export * from './types'; |
||||
|
|||||
Loading…
Reference in new issue