1.菜单规则权限管理

2.备份数据库
This commit is contained in:
2026-04-29 11:52:02 +08:00
parent f136e1c1ca
commit e8c2b9d345
8 changed files with 1352 additions and 12 deletions

View File

@@ -5,7 +5,7 @@
</el-alert>
<div class="toolbar">
<el-button type="primary" :loading="saving" :disabled="loading" @click="onSave">
<el-button v-if="canSave" type="primary" :loading="saving" :disabled="loading" @click="onSave">
{{ t('config.ziHuaDictionary.btn_save') }}
</el-button>
</div>
@@ -39,6 +39,7 @@ defineOptions({
})
const { t } = useI18n()
const canSave = auth('save')
type Item = { no: number; name: string; category: string }