style: 采购申请'完结本批'按钮样式统一为出库审批的 plain 实心样式

- 去掉 link 文字样式,改用 type=danger plain size=small,与出库审批完结按钮一致
This commit is contained in:
yueli
2026-09-01 16:23:44 +08:00
parent 4e09860b36
commit 8fd4a2ae53

View File

@ -116,9 +116,9 @@
<el-button type="success" link size="small" :loading="batchLoading" @click="handleApproveBatch(row.batchKey)">审批本批</el-button>
<el-button type="danger" link size="small" :loading="batchLoading" @click="openRejectBatchDialog(row.batchKey)">驳回本批</el-button>
</template>
<!-- 完结本批批次内已通过的单库管可直接完结仿出库审批主行可见 -->
<!-- 完结本批批次内已通过的单库管可直接完结仿出库审批主行可见样式一致 -->
<template v-if="batchHasClosable(row) && canClose">
<el-button type="danger" plain link size="small" :loading="batchLoading" @click="handleCloseBatch(row.batchKey)">完结本批</el-button>
<el-button type="danger" plain size="small" :loading="batchLoading" @click="handleCloseBatch(row.batchKey)">完结本批</el-button>
</template>
</template>
</el-table-column>