Merge branch 'master' of http://47.109.37.87:3000/by2025/admin-vben5
Some checks failed
/ Explore-Gitea-Actions (push) Failing after 5m23s

This commit is contained in:
FLL
2025-08-22 14:31:43 +08:00
7 changed files with 54 additions and 29 deletions

View File

@@ -179,7 +179,7 @@ function handleDownloadExcel() {
<template #action="{ row }">
<Space>
<ghost-button
v-access:code="['domain:procurementApplication:audit']"
v-access:code="['domain:procurementApplication:edit']"
:disabled="row.state === '1' || row.state === '2'"
type="primary"
@click.stop="handleAudit(row)"
@@ -187,7 +187,7 @@ function handleDownloadExcel() {
审核
</ghost-button>
<ghost-button
v-access:code="['domain:procurementApplication:detail']"
v-access:code="['domain:procurementApplication:query']"
@click.stop="handleDetail(row)"
>
详情

View File

@@ -155,7 +155,7 @@ const { hasAccessByCodes } = useAccess();
:unCheckedValue="0"
v-model:value="row.state"
:api="() => suppliersUpdate(row)"
:disabled="!hasAccessByCodes(['property:suppliers:update'])"
:disabled="!hasAccessByCodes(['property:suppliers:edit'])"
@reload="() => tableApi.query()"
/>
</template>