fix: 修改

This commit is contained in:
陈狼 2025-03-02 12:32:53 +08:00
parent 3c29cf610f
commit 9f3ff79797
1 changed files with 2 additions and 2 deletions

View File

@ -75,8 +75,8 @@
<a-table-column title="订单编号" data-index="order_number"></a-table-column>
<a-table-column title="操作">
<template #cell="{ record }">
<a-button v-if="status == 1" @click="handleNotBlock(record)">拒绝</a-button>
<a-button v-if="status == 1" @click="handleBlock(record)">同意</a-button>
<a-button v-if="record.status == 1" @click="handleNotBlock(record)">拒绝</a-button>
<a-button v-if="record.status == 1" @click="handleBlock(record)">同意</a-button>
</template>
</a-table-column>
</template>