优化前后端权限一致性

This commit is contained in:
Cheng Zhou
2026-05-26 14:53:17 +08:00
parent 41bd423be0
commit c909fc9387
15 changed files with 184 additions and 26 deletions
@@ -127,7 +127,7 @@ const route = useRoute();
const router = useRouter();
const study = useStudyStore();
const { can } = usePermission();
const canWrite = computed(() => can("fees.contract.write"));
const canWrite = computed(() => can("fees.contract.update"));
const contractId = route.params.contractId as string;
const loading = ref(false);