新增:优惠券

This commit is contained in:
2025-08-09 15:31:09 +08:00
parent 46ab97d002
commit 30c867c6b6
27 changed files with 1953 additions and 469 deletions

View File

@@ -104,11 +104,11 @@
</template>
<template v-if="column.key === 'action'">
<a-space>
<a @click="openEdit(record)">修改</a>
<a @click.stop="openEdit(record)">修改</a>
<a-divider type="vertical"/>
<a-popconfirm
title="确定要删除此记录吗?"
@confirm="remove(record)"
@confirm.stop="remove(record)"
>
<a class="ele-text-danger">删除</a>
</a-popconfirm>
@@ -247,15 +247,15 @@ const columns = ref<ColumnItem[]>([
sorter: true,
ellipsis: true,
customRender: ({text}) => toDateString(text)
},
{
title: '操作',
key: 'action',
width: 180,
fixed: 'right',
align: 'center',
hideInSetting: true
}
// {
// title: '操作',
// key: 'action',
// width: 180,
// fixed: 'right',
// align: 'center',
// hideInSetting: true
// }
]);
/* 搜索 */