修复:图形验证码大写不识别

修复:按商户ID查询订单、商品、分类等
This commit is contained in:
2024-09-23 01:08:24 +08:00
parent 228cacdf2a
commit 625568eb41
30 changed files with 2069 additions and 118 deletions

View File

@@ -44,12 +44,15 @@
>
<a-button
:size="`small`"
title="确定要删除此记录吗?"
:disabled="record.status === 1"
@confirm="remove(record)"
:disabled="record.status == 1"
class="ele-text-danger"
>
<a-popconfirm
title="确定要删除此记录吗?"
@confirm="remove(record)"
>删除
</a-popconfirm></a-button
>
<a class="ele-text-danger">删除</a>
</a-button>
</a-space>
</template>
</template>
@@ -200,7 +203,7 @@
/* 删除单个 */
const remove = (row: MerchantApply) => {
const hide = message.loading('请求中..', 0);
removeMerchantApply(row.merchantApplyId)
removeMerchantApply(row.applyId)
.then((msg) => {
hide();
message.success(msg);
@@ -225,7 +228,7 @@
maskClosable: true,
onOk: () => {
const hide = message.loading('请求中..', 0);
removeBatchMerchantApply(selection.value.map((d) => d.merchantApplyId))
removeBatchMerchantApply(selection.value.map((d) => d.applyId))
.then((msg) => {
hide();
message.success(msg);